]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
netfilter: nfnetlink: return ENOMEM if we fail to create netlink socket
authorPablo Neira Ayuso <pablo@netfilter.org>
Fri, 17 Apr 2009 15:48:44 +0000 (17:48 +0200)
committerPatrick McHardy <kaber@trash.net>
Fri, 17 Apr 2009 15:48:44 +0000 (17:48 +0200)
With this patch, nfnetlink returns -ENOMEM instead of -EPERM if we
fail to create the nfnetlink netlink socket during the module
loading. This is exactly what rtnetlink does in this case.

Ideally, it would be better if we propagate the error that has
happened in netlink_kernel_create(), however, this function still
does not implement this yet.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Patrick McHardy <kaber@trash.net>
net/netfilter/nfnetlink.c

index 2785d66a7e38a1c94143a2fae07188545392f292..b8ab37ad7ed56f60978d3827c31d722654c74fe0 100644 (file)
@@ -203,7 +203,7 @@ static int __init nfnetlink_init(void)
                                     nfnetlink_rcv, NULL, THIS_MODULE);
        if (!nfnl) {
                printk(KERN_ERR "cannot initialize nfnetlink!\n");
-               return -1;
+               return -ENOMEM;
        }
 
        return 0;