|
@@ -308,28 +308,6 @@ static int ipv6_destopt_rcv(struct sk_buff *skb)
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
|
-static struct inet6_protocol destopt_protocol = {
|
|
|
- .handler = ipv6_destopt_rcv,
|
|
|
- .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_GSO_EXTHDR,
|
|
|
-};
|
|
|
-
|
|
|
-void __init ipv6_destopt_init(void)
|
|
|
-{
|
|
|
- if (inet6_add_protocol(&destopt_protocol, IPPROTO_DSTOPTS) < 0)
|
|
|
- printk(KERN_ERR "ipv6_destopt_init: Could not register protocol\n");
|
|
|
-}
|
|
|
-
|
|
|
-static struct inet6_protocol nodata_protocol = {
|
|
|
- .handler = dst_discard,
|
|
|
- .flags = INET6_PROTO_NOPOLICY,
|
|
|
-};
|
|
|
-
|
|
|
-void __init ipv6_nodata_init(void)
|
|
|
-{
|
|
|
- if (inet6_add_protocol(&nodata_protocol, IPPROTO_NONE) < 0)
|
|
|
- printk(KERN_ERR "ipv6_nodata_init: Could not register protocol\n");
|
|
|
-}
|
|
|
-
|
|
|
/********************************
|
|
|
Routing header.
|
|
|
********************************/
|
|
@@ -527,12 +505,48 @@ static struct inet6_protocol rthdr_protocol = {
|
|
|
.flags = INET6_PROTO_NOPOLICY | INET6_PROTO_GSO_EXTHDR,
|
|
|
};
|
|
|
|
|
|
-void __init ipv6_rthdr_init(void)
|
|
|
+static struct inet6_protocol destopt_protocol = {
|
|
|
+ .handler = ipv6_destopt_rcv,
|
|
|
+ .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_GSO_EXTHDR,
|
|
|
+};
|
|
|
+
|
|
|
+static struct inet6_protocol nodata_protocol = {
|
|
|
+ .handler = dst_discard,
|
|
|
+ .flags = INET6_PROTO_NOPOLICY,
|
|
|
+};
|
|
|
+
|
|
|
+int __init ipv6_exthdrs_init(void)
|
|
|
{
|
|
|
- if (inet6_add_protocol(&rthdr_protocol, IPPROTO_ROUTING) < 0)
|
|
|
- printk(KERN_ERR "ipv6_rthdr_init: Could not register protocol\n");
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = inet6_add_protocol(&rthdr_protocol, IPPROTO_ROUTING);
|
|
|
+ if (ret)
|
|
|
+ goto out;
|
|
|
+
|
|
|
+ ret = inet6_add_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
|
|
|
+ if (ret)
|
|
|
+ goto out_rthdr;
|
|
|
+
|
|
|
+ ret = inet6_add_protocol(&nodata_protocol, IPPROTO_NONE);
|
|
|
+ if (ret)
|
|
|
+ goto out_destopt;
|
|
|
+
|
|
|
+out:
|
|
|
+ return ret;
|
|
|
+out_rthdr:
|
|
|
+ inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING);
|
|
|
+out_destopt:
|
|
|
+ inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
|
|
|
+ goto out;
|
|
|
};
|
|
|
|
|
|
+void ipv6_exthdrs_exit(void)
|
|
|
+{
|
|
|
+ inet6_del_protocol(&nodata_protocol, IPPROTO_NONE);
|
|
|
+ inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
|
|
|
+ inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING);
|
|
|
+}
|
|
|
+
|
|
|
/**********************************
|
|
|
Hop-by-hop options.
|
|
|
**********************************/
|