Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78375
b: refs/heads/master
c: c35b7e7
h: refs/heads/master
i:
  78373: 4b203c8
  78371: d0099fa
  78367: 1c146da
v: v3
  • Loading branch information
Daniel Lezcano authored and David S. Miller committed Jan 28, 2008
1 parent 84e10c1 commit 663edf3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 75314fb38364c81a573cd222f74d792409a7afba
refs/heads/master: c35b7e72cd48bc7163b6900fb3689fa54b572bba
16 changes: 13 additions & 3 deletions trunk/include/net/xfrm.h
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,6 @@ xfrm_state_addr_cmp(struct xfrm_tmpl *tmpl, struct xfrm_state *x, unsigned short
}

#ifdef CONFIG_XFRM

extern int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, unsigned short family);

static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family)
Expand Down Expand Up @@ -1066,12 +1065,23 @@ struct xfrm6_tunnel {

extern void xfrm_init(void);
extern void xfrm4_init(void);
extern int xfrm6_init(void);
extern void xfrm6_fini(void);
extern void xfrm_state_init(void);
extern void xfrm4_state_init(void);
#ifdef CONFIG_XFRM
extern int xfrm6_init(void);
extern void xfrm6_fini(void);
extern int xfrm6_state_init(void);
extern void xfrm6_state_fini(void);
#else
static inline int xfrm6_init(void)
{
return 0;
}
static inline void xfrm6_fini(void)
{
;
}
#endif

extern int xfrm_state_walk(u8 proto, int (*func)(struct xfrm_state *, int, void*), void *);
extern struct xfrm_state *xfrm_state_alloc(void);
Expand Down
7 changes: 1 addition & 6 deletions trunk/net/ipv6/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -2522,11 +2522,10 @@ int __init ip6_route_init(void)
if (ret)
goto out_fib6_init;

#ifdef CONFIG_XFRM
ret = xfrm6_init();
if (ret)
goto out_proc_init;
#endif

#ifdef CONFIG_IPV6_MULTIPLE_TABLES
ret = fib6_rules_init();
if (ret)
Expand All @@ -2547,9 +2546,7 @@ int __init ip6_route_init(void)
fib6_rules_cleanup();
xfrm6_init:
#endif
#ifdef CONFIG_XFRM
xfrm6_fini();
#endif
out_proc_init:
ipv6_route_proc_fini(&init_net);
out_fib6_init:
Expand All @@ -2566,9 +2563,7 @@ void ip6_route_cleanup(void)
fib6_rules_cleanup();
#endif
ipv6_route_proc_fini(&init_net);
#ifdef CONFIG_XFRM
xfrm6_fini();
#endif
rt6_ifdown(NULL);
fib6_gc_cleanup();
kmem_cache_destroy(ip6_dst_ops.kmem_cachep);
Expand Down

0 comments on commit 663edf3

Please sign in to comment.