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 /fs/btrfs/tree-log.c | |
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 'fs/btrfs/tree-log.c')
-rw-r--r-- | fs/btrfs/tree-log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index e9ebb472b28b..81e407d9677a 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -2952,8 +2952,8 @@ static void fill_inode_item(struct btrfs_trans_handle *trans, | |||
2952 | struct btrfs_inode_item *item, | 2952 | struct btrfs_inode_item *item, |
2953 | struct inode *inode, int log_inode_only) | 2953 | struct inode *inode, int log_inode_only) |
2954 | { | 2954 | { |
2955 | btrfs_set_inode_uid(leaf, item, inode->i_uid); | 2955 | btrfs_set_inode_uid(leaf, item, i_uid_read(inode)); |
2956 | btrfs_set_inode_gid(leaf, item, inode->i_gid); | 2956 | btrfs_set_inode_gid(leaf, item, i_gid_read(inode)); |
2957 | btrfs_set_inode_mode(leaf, item, inode->i_mode); | 2957 | btrfs_set_inode_mode(leaf, item, inode->i_mode); |
2958 | btrfs_set_inode_nlink(leaf, item, inode->i_nlink); | 2958 | btrfs_set_inode_nlink(leaf, item, inode->i_nlink); |
2959 | 2959 | ||