diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-13 16:23:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-13 16:23:39 -0400 |
commit | 09a9ad6a1ff86836e5280c39300176c4758bb459 (patch) | |
tree | 27967b60cbb53def07f4ceb8365efb8206c2a777 /net | |
parent | 9db908806b85c1430150fbafe269a7b21b07d15d (diff) | |
parent | e9069f470803eeb5e243a05bc717452c6218bd71 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
Pull user namespace compile fixes from Eric W Biederman:
"This tree contains three trivial fixes. One compiler warning, one
thinko fix, and one build fix"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace:
btrfs: Fix compilation with user namespace support enabled
userns: Fix posix_acl_file_xattr_userns gid conversion
userns: Properly print bluetooth socket uids
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/af_bluetooth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index 9d49ee6d7219..ba033f09196e 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c | |||
@@ -591,7 +591,7 @@ static int bt_seq_show(struct seq_file *seq, void *v) | |||
591 | atomic_read(&sk->sk_refcnt), | 591 | atomic_read(&sk->sk_refcnt), |
592 | sk_rmem_alloc_get(sk), | 592 | sk_rmem_alloc_get(sk), |
593 | sk_wmem_alloc_get(sk), | 593 | sk_wmem_alloc_get(sk), |
594 | sock_i_uid(sk), | 594 | from_kuid(seq_user_ns(seq), sock_i_uid(sk)), |
595 | sock_i_ino(sk), | 595 | sock_i_ino(sk), |
596 | &src_baswapped, | 596 | &src_baswapped, |
597 | &dst_baswapped, | 597 | &dst_baswapped, |