diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-04-17 17:48:44 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2009-04-17 17:48:44 +0200 |
commit | a0142733a7ef2f3476e63938b330026a08c53f37 (patch) | |
tree | 0db333bc484a6cf3079b063994a3d768a4de6dc6 /net | |
parent | 150ace0db360373d2016a2497d252138a59c5ba8 (diff) | |
download | linux-3.10-a0142733a7ef2f3476e63938b330026a08c53f37.tar.gz linux-3.10-a0142733a7ef2f3476e63938b330026a08c53f37.tar.bz2 linux-3.10-a0142733a7ef2f3476e63938b330026a08c53f37.zip |
netfilter: nfnetlink: return ENOMEM if we fail to create netlink socket
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nfnetlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c index 2785d66a7e3..b8ab37ad7ed 100644 --- a/net/netfilter/nfnetlink.c +++ b/net/netfilter/nfnetlink.c @@ -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; |