[NET]: cleanup 3rd argument in netlink_sendskb
[powerpc.git] / net / netlink / af_netlink.c
index bca93e1..a5bd63c 100644 (file)
@@ -791,7 +791,7 @@ int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
        return 0;
 }
 
-int netlink_sendskb(struct sock *sk, struct sk_buff *skb, int protocol)
+int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
 {
        int len = skb->len;
 
@@ -853,7 +853,7 @@ retry:
        if (err)
                return err;
 
-       return netlink_sendskb(sk, skb, ssk->sk_protocol);
+       return netlink_sendskb(sk, skb);
 }
 
 int netlink_has_listeners(struct sock *sk, unsigned int group)
@@ -1845,27 +1845,18 @@ static const struct seq_operations netlink_seq_ops = {
 
 static int netlink_seq_open(struct inode *inode, struct file *file)
 {
-       struct seq_file *seq;
        struct nl_seq_iter *iter;
-       int err;
 
-       iter = kzalloc(sizeof(*iter), GFP_KERNEL);
+       iter = __seq_open_private(file, &netlink_seq_ops, sizeof(*iter));
        if (!iter)
                return -ENOMEM;
 
-       err = seq_open(file, &netlink_seq_ops);
-       if (err) {
-               kfree(iter);
-               return err;
-       }
-
-       seq = file->private_data;
-       seq->private = iter;
        iter->net = get_proc_net(inode);
        if (!iter->net) {
                seq_release_private(inode, file);
                return -ENXIO;
        }
+
        return 0;
 }
 
@@ -1924,7 +1915,7 @@ static struct net_proto_family netlink_family_ops = {
        .owner  = THIS_MODULE,  /* for consistency 8) */
 };
 
-static int netlink_net_init(struct net *net)
+static int __net_init netlink_net_init(struct net *net)
 {
 #ifdef CONFIG_PROC_FS
        if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
@@ -1933,14 +1924,14 @@ static int netlink_net_init(struct net *net)
        return 0;
 }
 
-static void netlink_net_exit(struct net *net)
+static void __net_exit netlink_net_exit(struct net *net)
 {
 #ifdef CONFIG_PROC_FS
        proc_net_remove(net, "netlink");
 #endif
 }
 
-static struct pernet_operations netlink_net_ops = {
+static struct pernet_operations __net_initdata netlink_net_ops = {
        .init = netlink_net_init,
        .exit = netlink_net_exit,
 };
@@ -1949,7 +1940,7 @@ static int __init netlink_proto_init(void)
 {
        struct sk_buff *dummy_skb;
        int i;
-       unsigned long max;
+       unsigned long limit;
        unsigned int order;
        int err = proto_register(&netlink_proto, 0);
 
@@ -1963,13 +1954,13 @@ static int __init netlink_proto_init(void)
                goto panic;
 
        if (num_physpages >= (128 * 1024))
-               max = num_physpages >> (21 - PAGE_SHIFT);
+               limit = num_physpages >> (21 - PAGE_SHIFT);
        else
-               max = num_physpages >> (23 - PAGE_SHIFT);
+               limit = num_physpages >> (23 - PAGE_SHIFT);
 
-       order = get_bitmask_order(max) - 1 + PAGE_SHIFT;
-       max = (1UL << order) / sizeof(struct hlist_head);
-       order = get_bitmask_order(min(max, (unsigned long)UINT_MAX)) - 1;
+       order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
+       limit = (1UL << order) / sizeof(struct hlist_head);
+       order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
 
        for (i = 0; i < MAX_LINKS; i++) {
                struct nl_pid_hash *hash = &nl_table[i].hash;