diff options
-rw-r--r-- | net/ipv4/xfrm4_mode_tunnel.c | 16 | ||||
-rw-r--r-- | net/ipv6/xfrm6_mode_tunnel.c | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/net/ipv4/xfrm4_mode_tunnel.c b/net/ipv4/xfrm4_mode_tunnel.c index aa335dba8ffa..8dee617ee900 100644 --- a/net/ipv4/xfrm4_mode_tunnel.c +++ b/net/ipv4/xfrm4_mode_tunnel.c | |||
@@ -26,7 +26,7 @@ static inline void ipip_ecn_decapsulate(struct sk_buff *skb) | |||
26 | * | 26 | * |
27 | * The top IP header will be constructed per RFC 2401. | 27 | * The top IP header will be constructed per RFC 2401. |
28 | */ | 28 | */ |
29 | static int xfrm4_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) | 29 | static int xfrm4_mode_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) |
30 | { | 30 | { |
31 | struct dst_entry *dst = skb->dst; | 31 | struct dst_entry *dst = skb->dst; |
32 | struct iphdr *top_iph; | 32 | struct iphdr *top_iph; |
@@ -63,7 +63,7 @@ static int xfrm4_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) | |||
63 | return 0; | 63 | return 0; |
64 | } | 64 | } |
65 | 65 | ||
66 | static int xfrm4_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) | 66 | static int xfrm4_mode_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) |
67 | { | 67 | { |
68 | const unsigned char *old_mac; | 68 | const unsigned char *old_mac; |
69 | int err = -EINVAL; | 69 | int err = -EINVAL; |
@@ -94,21 +94,21 @@ out: | |||
94 | } | 94 | } |
95 | 95 | ||
96 | static struct xfrm_mode xfrm4_tunnel_mode = { | 96 | static struct xfrm_mode xfrm4_tunnel_mode = { |
97 | .input2 = xfrm4_tunnel_input, | 97 | .input2 = xfrm4_mode_tunnel_input, |
98 | .input = xfrm_prepare_input, | 98 | .input = xfrm_prepare_input, |
99 | .output2 = xfrm4_tunnel_output, | 99 | .output2 = xfrm4_mode_tunnel_output, |
100 | .output = xfrm4_prepare_output, | 100 | .output = xfrm4_prepare_output, |
101 | .owner = THIS_MODULE, | 101 | .owner = THIS_MODULE, |
102 | .encap = XFRM_MODE_TUNNEL, | 102 | .encap = XFRM_MODE_TUNNEL, |
103 | .flags = XFRM_MODE_FLAG_TUNNEL, | 103 | .flags = XFRM_MODE_FLAG_TUNNEL, |
104 | }; | 104 | }; |
105 | 105 | ||
106 | static int __init xfrm4_tunnel_init(void) | 106 | static int __init xfrm4_mode_tunnel_init(void) |
107 | { | 107 | { |
108 | return xfrm_register_mode(&xfrm4_tunnel_mode, AF_INET); | 108 | return xfrm_register_mode(&xfrm4_tunnel_mode, AF_INET); |
109 | } | 109 | } |
110 | 110 | ||
111 | static void __exit xfrm4_tunnel_exit(void) | 111 | static void __exit xfrm4_mode_tunnel_exit(void) |
112 | { | 112 | { |
113 | int err; | 113 | int err; |
114 | 114 | ||
@@ -116,7 +116,7 @@ static void __exit xfrm4_tunnel_exit(void) | |||
116 | BUG_ON(err); | 116 | BUG_ON(err); |
117 | } | 117 | } |
118 | 118 | ||
119 | module_init(xfrm4_tunnel_init); | 119 | module_init(xfrm4_mode_tunnel_init); |
120 | module_exit(xfrm4_tunnel_exit); | 120 | module_exit(xfrm4_mode_tunnel_exit); |
121 | MODULE_LICENSE("GPL"); | 121 | MODULE_LICENSE("GPL"); |
122 | MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_TUNNEL); | 122 | MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_TUNNEL); |
diff --git a/net/ipv6/xfrm6_mode_tunnel.c b/net/ipv6/xfrm6_mode_tunnel.c index f7d0d6612650..0c742faaa30b 100644 --- a/net/ipv6/xfrm6_mode_tunnel.c +++ b/net/ipv6/xfrm6_mode_tunnel.c | |||
@@ -29,7 +29,7 @@ static inline void ipip6_ecn_decapsulate(struct sk_buff *skb) | |||
29 | * | 29 | * |
30 | * The top IP header will be constructed per RFC 2401. | 30 | * The top IP header will be constructed per RFC 2401. |
31 | */ | 31 | */ |
32 | static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) | 32 | static int xfrm6_mode_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) |
33 | { | 33 | { |
34 | struct dst_entry *dst = skb->dst; | 34 | struct dst_entry *dst = skb->dst; |
35 | struct ipv6hdr *top_iph; | 35 | struct ipv6hdr *top_iph; |
@@ -58,7 +58,7 @@ static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) | |||
58 | return 0; | 58 | return 0; |
59 | } | 59 | } |
60 | 60 | ||
61 | static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) | 61 | static int xfrm6_mode_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) |
62 | { | 62 | { |
63 | int err = -EINVAL; | 63 | int err = -EINVAL; |
64 | const unsigned char *old_mac; | 64 | const unsigned char *old_mac; |
@@ -89,21 +89,21 @@ out: | |||
89 | } | 89 | } |
90 | 90 | ||
91 | static struct xfrm_mode xfrm6_tunnel_mode = { | 91 | static struct xfrm_mode xfrm6_tunnel_mode = { |
92 | .input2 = xfrm6_tunnel_input, | 92 | .input2 = xfrm6_mode_tunnel_input, |
93 | .input = xfrm_prepare_input, | 93 | .input = xfrm_prepare_input, |
94 | .output2 = xfrm6_tunnel_output, | 94 | .output2 = xfrm6_mode_tunnel_output, |
95 | .output = xfrm6_prepare_output, | 95 | .output = xfrm6_prepare_output, |
96 | .owner = THIS_MODULE, | 96 | .owner = THIS_MODULE, |
97 | .encap = XFRM_MODE_TUNNEL, | 97 | .encap = XFRM_MODE_TUNNEL, |
98 | .flags = XFRM_MODE_FLAG_TUNNEL, | 98 | .flags = XFRM_MODE_FLAG_TUNNEL, |
99 | }; | 99 | }; |
100 | 100 | ||
101 | static int __init xfrm6_tunnel_init(void) | 101 | static int __init xfrm6_mode_tunnel_init(void) |
102 | { | 102 | { |
103 | return xfrm_register_mode(&xfrm6_tunnel_mode, AF_INET6); | 103 | return xfrm_register_mode(&xfrm6_tunnel_mode, AF_INET6); |
104 | } | 104 | } |
105 | 105 | ||
106 | static void __exit xfrm6_tunnel_exit(void) | 106 | static void __exit xfrm6_mode_tunnel_exit(void) |
107 | { | 107 | { |
108 | int err; | 108 | int err; |
109 | 109 | ||
@@ -111,7 +111,7 @@ static void __exit xfrm6_tunnel_exit(void) | |||
111 | BUG_ON(err); | 111 | BUG_ON(err); |
112 | } | 112 | } |
113 | 113 | ||
114 | module_init(xfrm6_tunnel_init); | 114 | module_init(xfrm6_mode_tunnel_init); |
115 | module_exit(xfrm6_tunnel_exit); | 115 | module_exit(xfrm6_mode_tunnel_exit); |
116 | MODULE_LICENSE("GPL"); | 116 | MODULE_LICENSE("GPL"); |
117 | MODULE_ALIAS_XFRM_MODE(AF_INET6, XFRM_MODE_TUNNEL); | 117 | MODULE_ALIAS_XFRM_MODE(AF_INET6, XFRM_MODE_TUNNEL); |