diff options
author | Daniel Lezcano <dlezcano@fr.ibm.com> | 2007-12-08 03:14:11 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:56:59 -0500 |
commit | c35b7e72cd48bc7163b6900fb3689fa54b572bba (patch) | |
tree | 28e1386d9c0a7522e40d6d77b2c912f88f0e8a36 /include/net/xfrm.h | |
parent | 75314fb38364c81a573cd222f74d792409a7afba (diff) |
[IPV6]: remove ifdef in route6 for xfrm6
The following patch create the usual static inline functions to disable
the xfrm6_init and xfrm6_fini function when XFRM is off.
That's allow to remove some ifdef and make the code a little more clear.
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/xfrm.h')
-rw-r--r-- | include/net/xfrm.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 18260921eeb5..503d0d294a4c 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
@@ -842,7 +842,6 @@ xfrm_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x, unsigned short | |||
842 | } | 842 | } |
843 | 843 | ||
844 | #ifdef CONFIG_XFRM | 844 | #ifdef CONFIG_XFRM |
845 | |||
846 | extern int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, unsigned short family); | 845 | extern int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, unsigned short family); |
847 | 846 | ||
848 | static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family) | 847 | static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family) |
@@ -1066,12 +1065,23 @@ struct xfrm6_tunnel { | |||
1066 | 1065 | ||
1067 | extern void xfrm_init(void); | 1066 | extern void xfrm_init(void); |
1068 | extern void xfrm4_init(void); | 1067 | extern void xfrm4_init(void); |
1069 | extern int xfrm6_init(void); | ||
1070 | extern void xfrm6_fini(void); | ||
1071 | extern void xfrm_state_init(void); | 1068 | extern void xfrm_state_init(void); |
1072 | extern void xfrm4_state_init(void); | 1069 | extern void xfrm4_state_init(void); |
1070 | #ifdef CONFIG_XFRM | ||
1071 | extern int xfrm6_init(void); | ||
1072 | extern void xfrm6_fini(void); | ||
1073 | extern int xfrm6_state_init(void); | 1073 | extern int xfrm6_state_init(void); |
1074 | extern void xfrm6_state_fini(void); | 1074 | extern void xfrm6_state_fini(void); |
1075 | #else | ||
1076 | static inline int xfrm6_init(void) | ||
1077 | { | ||
1078 | return 0; | ||
1079 | } | ||
1080 | static inline void xfrm6_fini(void) | ||
1081 | { | ||
1082 | ; | ||
1083 | } | ||
1084 | #endif | ||
1075 | 1085 | ||
1076 | extern int xfrm_state_walk(u8 proto, int (*func)(struct xfrm_state *, int, void*), void *); | 1086 | extern int xfrm_state_walk(u8 proto, int (*func)(struct xfrm_state *, int, void*), void *); |
1077 | extern struct xfrm_state *xfrm_state_alloc(void); | 1087 | extern struct xfrm_state *xfrm_state_alloc(void); |