Commit fea1ab0f authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller

[PKTGEN]: make get_ipsec_sa() static and non-inline

Non-static inline code usually doesn't makes sense.

In this case making is static and non-inline is the correct solution.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8aeca8fe
...@@ -2159,8 +2159,7 @@ static inline int f_pick(struct pktgen_dev *pkt_dev) ...@@ -2159,8 +2159,7 @@ static inline int f_pick(struct pktgen_dev *pkt_dev)
/* If there was already an IPSEC SA, we keep it as is, else /* If there was already an IPSEC SA, we keep it as is, else
* we go look for it ... * we go look for it ...
*/ */
inline static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
{ {
struct xfrm_state *x = pkt_dev->flows[flow].x; struct xfrm_state *x = pkt_dev->flows[flow].x;
if (!x) { if (!x) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment