mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
netlink: implement unbind to netlink_setsockopt NETLINK_DROP_MEMBERSHIP
Call the per-protocol unbind function rather than bind function on NETLINK_DROP_MEMBERSHIP in netlink_setsockopt(). Signed-off-by: Richard Guy Briggs <rgb@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4f52090052
commit
7774d5e03f
@ -2129,7 +2129,7 @@ static int netlink_setsockopt(struct socket *sock, int level, int optname,
|
||||
return err;
|
||||
if (!val || val - 1 >= nlk->ngroups)
|
||||
return -EINVAL;
|
||||
if (nlk->netlink_bind) {
|
||||
if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
|
||||
err = nlk->netlink_bind(val);
|
||||
if (err)
|
||||
return err;
|
||||
@ -2138,6 +2138,8 @@ static int netlink_setsockopt(struct socket *sock, int level, int optname,
|
||||
netlink_update_socket_mc(nlk, val,
|
||||
optname == NETLINK_ADD_MEMBERSHIP);
|
||||
netlink_table_ungrab();
|
||||
if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
|
||||
nlk->netlink_unbind(val);
|
||||
|
||||
err = 0;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user