diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/netlink/af_netlink.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 36f75d873898..46f3e44bb83a 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c | |||
@@ -54,7 +54,6 @@ | |||
54 | #include <linux/mm.h> | 54 | #include <linux/mm.h> |
55 | #include <linux/types.h> | 55 | #include <linux/types.h> |
56 | #include <linux/audit.h> | 56 | #include <linux/audit.h> |
57 | #include <linux/selinux.h> | ||
58 | #include <linux/mutex.h> | 57 | #include <linux/mutex.h> |
59 | 58 | ||
60 | #include <net/net_namespace.h> | 59 | #include <net/net_namespace.h> |
@@ -1249,7 +1248,7 @@ static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock, | |||
1249 | NETLINK_CB(skb).pid = nlk->pid; | 1248 | NETLINK_CB(skb).pid = nlk->pid; |
1250 | NETLINK_CB(skb).dst_group = dst_group; | 1249 | NETLINK_CB(skb).dst_group = dst_group; |
1251 | NETLINK_CB(skb).loginuid = audit_get_loginuid(current); | 1250 | NETLINK_CB(skb).loginuid = audit_get_loginuid(current); |
1252 | selinux_get_task_sid(current, &(NETLINK_CB(skb).sid)); | 1251 | security_task_getsecid(current, &(NETLINK_CB(skb).sid)); |
1253 | memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred)); | 1252 | memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred)); |
1254 | 1253 | ||
1255 | /* What can I do? Netlink is asynchronous, so that | 1254 | /* What can I do? Netlink is asynchronous, so that |