diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-26 02:53:22 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:55:01 -0500 |
commit | 3eda0de677b5756be09a76ac0399e1a3db00f0e0 (patch) | |
tree | 02d557278306d665f0b0ec58e3a89593360fa005 /fs/9p/vfs_super.c | |
parent | 587228be4a43c28c402c1cc8a5f185252d8e2231 (diff) | |
download | op-kernel-dev-3eda0de677b5756be09a76ac0399e1a3db00f0e0.zip op-kernel-dev-3eda0de677b5756be09a76ac0399e1a3db00f0e0.tar.gz |
9p: propagate umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/9p/vfs_super.c')
-rw-r--r-- | fs/9p/vfs_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/vfs_super.c b/fs/9p/vfs_super.c index c70251d..f68ff65 100644 --- a/fs/9p/vfs_super.c +++ b/fs/9p/vfs_super.c @@ -117,7 +117,7 @@ static struct dentry *v9fs_mount(struct file_system_type *fs_type, int flags, struct inode *inode = NULL; struct dentry *root = NULL; struct v9fs_session_info *v9ses = NULL; - int mode = S_IRWXUGO | S_ISVTX; + umode_t mode = S_IRWXUGO | S_ISVTX; struct p9_fid *fid; int retval = 0; |