projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
319b2be
)
btrfs: replace inode uid,gid,mode initialization with helper function
author
Dmitry Monakhov
<
[email protected]
>
Thu, 4 Mar 2010 14:31:47 +0000
(17:31 +0300)
committer
Al Viro
<
[email protected]
>
Fri, 21 May 2010 22:31:23 +0000
(18:31 -0400)
Signed-off-by: Dmitry Monakhov <
[email protected]
>
Signed-off-by: Al Viro <
[email protected]
>
fs/btrfs/inode.c
patch
|
blob
|
history
diff --git
a/fs/btrfs/inode.c
b/fs/btrfs/inode.c
index 2bfdc641d4e3ba046f3afd89400f362ec959e46b..d601629b85d171943ee7fa1421b630d7efc7fe35 100644
(file)
--- a/
fs/btrfs/inode.c
+++ b/
fs/btrfs/inode.c
@@
-4121,16
+4121,7
@@
static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
if (ret != 0)
goto fail;
- inode->i_uid = current_fsuid();
-
- if (dir && (dir->i_mode & S_ISGID)) {
- inode->i_gid = dir->i_gid;
- if (S_ISDIR(mode))
- mode |= S_ISGID;
- } else
- inode->i_gid = current_fsgid();
-
- inode->i_mode = mode;
+ inode_init_owner(inode, dir, mode);
inode->i_ino = objectid;
inode_set_bytes(inode, 0);
inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;