diff options
Diffstat (limited to 'include/net/scm.h')
-rw-r--r-- | include/net/scm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/net/scm.h b/include/net/scm.h index 423cb1d5ac25..06df126103ca 100644 --- a/include/net/scm.h +++ b/include/net/scm.h | |||
@@ -4,6 +4,8 @@ | |||
4 | #include <linux/limits.h> | 4 | #include <linux/limits.h> |
5 | #include <linux/net.h> | 5 | #include <linux/net.h> |
6 | #include <linux/security.h> | 6 | #include <linux/security.h> |
7 | #include <linux/pid.h> | ||
8 | #include <linux/nsproxy.h> | ||
7 | 9 | ||
8 | /* Well, we should have at least one descriptor open | 10 | /* Well, we should have at least one descriptor open |
9 | * to accept passed FDs 8) | 11 | * to accept passed FDs 8) |
@@ -54,7 +56,7 @@ static __inline__ int scm_send(struct socket *sock, struct msghdr *msg, | |||
54 | struct task_struct *p = current; | 56 | struct task_struct *p = current; |
55 | scm->creds.uid = p->uid; | 57 | scm->creds.uid = p->uid; |
56 | scm->creds.gid = p->gid; | 58 | scm->creds.gid = p->gid; |
57 | scm->creds.pid = p->tgid; | 59 | scm->creds.pid = task_tgid_vnr(p); |
58 | scm->fp = NULL; | 60 | scm->fp = NULL; |
59 | scm->seq = 0; | 61 | scm->seq = 0; |
60 | unix_get_peersec_dgram(sock, scm); | 62 | unix_get_peersec_dgram(sock, scm); |