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:
85640bd
)
ubifs: replace inode uid,gid,mode initialization with helper function
author
Dmitry Monakhov
<
[email protected]
>
Thu, 4 Mar 2010 14:32:21 +0000
(17:32 +0300)
committer
Al Viro
<
[email protected]
>
Fri, 21 May 2010 22:31:26 +0000
(18:31 -0400)
Acked-by: Artem Bityutskiy <
[email protected]
>
Signed-off-by: Dmitry Monakhov <
[email protected]
>
Signed-off-by: Al Viro <
[email protected]
>
fs/ubifs/dir.c
patch
|
blob
|
history
diff --git
a/fs/ubifs/dir.c
b/fs/ubifs/dir.c
index 401e503d44a147da68e4b0a0f2fad7f518949a55..87ebcce72213e2889f66127125908190a4ef213d 100644
(file)
--- a/
fs/ubifs/dir.c
+++ b/
fs/ubifs/dir.c
@@
-104,14
+104,7
@@
struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir,
*/
inode->i_flags |= (S_NOCMTIME);
- inode->i_uid = current_fsuid();
- if (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_mtime = inode->i_atime = inode->i_ctime =
ubifs_current_time(inode);
inode->i_mapping->nrpages = 0;