diff options
author | Florian Westphal <fw@strlen.de> | 2018-12-18 17:15:19 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-19 11:21:37 -0800 |
commit | 7af8f4ca314a592e2ba49cb5ea1de1325974998e (patch) | |
tree | d5c8d8986c2ca44f3e4c4274b927bae8caa2a00d /include/net | |
parent | 0ca64da128b816b2826e9b469f47239c47f1df31 (diff) | |
download | linux-7af8f4ca314a592e2ba49cb5ea1de1325974998e.tar.gz linux-7af8f4ca314a592e2ba49cb5ea1de1325974998e.tar.bz2 linux-7af8f4ca314a592e2ba49cb5ea1de1325974998e.zip |
net: move secpath_exist helper to sk_buff.h
Future patch will remove skb->sp pointer.
To reduce noise in those patches, move existing helper to
sk_buff and use it in more places to ease skb->sp replacement later.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/xfrm.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 62ca62177bc6..9cb506d09b98 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h @@ -1104,15 +1104,6 @@ struct sec_path { struct xfrm_offload ovec[XFRM_MAX_OFFLOAD_DEPTH]; }; -static inline int secpath_exists(struct sk_buff *skb) -{ -#ifdef CONFIG_XFRM - return skb->sp != NULL; -#else - return 0; -#endif -} - static inline struct sec_path * secpath_get(struct sec_path *sp) { |