aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-07-24 23:20:18 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-01-03 22:55:11 -0500
commit62bb109170375f82eb3c51c8080b72954f02dca7 (patch)
tree47d0a7b84c195b2267ed6803e4492eec6ec8478c /fs/inode.c
parent175a4eb7ea531cdbf6d574f5d5ba9aa0f5e8ed13 (diff)
switch inode_init_owner() to umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c
index 24d02907e196..961355d00e38 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1646,7 +1646,7 @@ EXPORT_SYMBOL(init_special_inode);
1646 * @mode: mode of the new inode 1646 * @mode: mode of the new inode
1647 */ 1647 */
1648void inode_init_owner(struct inode *inode, const struct inode *dir, 1648void inode_init_owner(struct inode *inode, const struct inode *dir,
1649 mode_t mode) 1649 umode_t mode)
1650{ 1650{
1651 inode->i_uid = current_fsuid(); 1651 inode->i_uid = current_fsuid();
1652 if (dir && dir->i_mode & S_ISGID) { 1652 if (dir && dir->i_mode & S_ISGID) {