mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
netlink: Create kernel netlink sockets in the proper network namespace
Utilize the new functionality of sk_alloc so that nothing needs to be done to suprress the reference counting on kernel sockets. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
26abe14379
commit
13d3078e22
1 changed files with 6 additions and 8 deletions
|
@ -2516,16 +2516,11 @@ __netlink_kernel_create(struct net *net, int unit, struct module *module,
|
|||
|
||||
if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
|
||||
return NULL;
|
||||
/*
|
||||
* We have to just have a reference on the net from sk, but don't
|
||||
* get_net it. Besides, we cannot get and then put the net here.
|
||||
* So we create one inside init_net and the move it to net.
|
||||
*/
|
||||
if (__netlink_create(&init_net, sock, cb_mutex, unit, 0) < 0)
|
||||
|
||||
if (__netlink_create(net, sock, cb_mutex, unit, 1) < 0)
|
||||
goto out_sock_release_nosk;
|
||||
|
||||
sk = sock->sk;
|
||||
sk_change_net(sk, net);
|
||||
|
||||
if (!cfg || cfg->groups < 32)
|
||||
groups = 32;
|
||||
|
@ -2581,7 +2576,10 @@ EXPORT_SYMBOL(__netlink_kernel_create);
|
|||
void
|
||||
netlink_kernel_release(struct sock *sk)
|
||||
{
|
||||
sk_release_kernel(sk);
|
||||
if (sk == NULL || sk->sk_socket == NULL)
|
||||
return;
|
||||
|
||||
sock_release(sk->sk_socket);
|
||||
}
|
||||
EXPORT_SYMBOL(netlink_kernel_release);
|
||||
|
||||
|
|
Loading…
Reference in a new issue