audit: print error message when fail to create audit socket

print the error message and then return -ENOMEM.

Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
This commit is contained in:
Gao feng 2013-12-17 11:10:41 +08:00 committed by Eric Paris
parent 5ee9a75c9f
commit 11ee39ebf7
1 changed files with 4 additions and 5 deletions

View File

@ -1082,12 +1082,11 @@ static int __net_init audit_net_init(struct net *net)
pr_info("audit: initializing netlink socket in namespace\n");
aunet->nlsk = netlink_kernel_create(net, NETLINK_AUDIT, &cfg);
if (aunet->nlsk == NULL)
return -ENOMEM;
if (!aunet->nlsk)
if (aunet->nlsk == NULL) {
audit_panic("cannot initialize netlink socket in namespace");
else
aunet->nlsk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
return -ENOMEM;
}
aunet->nlsk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
return 0;
}