diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-30 18:04:09 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-31 02:28:25 -0700 |
commit | fea1ab0fcf117bc1e9c9285af6463d31d9cc0ac6 (patch) | |
tree | 770c757c612b46baad7630156cdf1aa192b23b8b /net/core/pktgen.c | |
parent | 8aeca8fea5f2de2563e097829d62af30ca2de650 (diff) | |
download | kernel_samsung_tuna-fea1ab0fcf117bc1e9c9285af6463d31d9cc0ac6.zip kernel_samsung_tuna-fea1ab0fcf117bc1e9c9285af6463d31d9cc0ac6.tar.gz kernel_samsung_tuna-fea1ab0fcf117bc1e9c9285af6463d31d9cc0ac6.tar.bz2 |
[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: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/pktgen.c')
-rw-r--r-- | net/core/pktgen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c index be985f0..7bae576 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -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 * we go look for it ... */ -inline -void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow) +static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow) { struct xfrm_state *x = pkt_dev->flows[flow].x; if (!x) { |