aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hostfs
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2015-05-04 14:50:29 +0200
committerRichard Weinberger <richard@nod.at>2015-05-04 14:50:29 +0200
commita718c92219b35e8a75175fde85c4566ac5730273 (patch)
tree69b4b5ab9b19443b13c6368a39a91c3c78b9aa9c /fs/hostfs
parentLinux 4.1-rc2 (diff)
downloadlinux-dev-a718c92219b35e8a75175fde85c4566ac5730273.tar.xz
linux-dev-a718c92219b35e8a75175fde85c4566ac5730273.zip
hostfs: Use correct mask for file mode
S_IFMT is obviously wrong and needs to be 0777. We're interested in the file mode, not the type. Fixes: b98b91029c (hostfs: No need to box and later unbox the file mode) Reported-by: Markus Stenberg <markus.stenberg@iki.fi> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/hostfs')
-rw-r--r--fs/hostfs/hostfs_kern.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c
index ef263174acd2..07d8d8f52faf 100644
--- a/fs/hostfs/hostfs_kern.c
+++ b/fs/hostfs/hostfs_kern.c
@@ -581,7 +581,7 @@ static int hostfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
if (name == NULL)
goto out_put;
- fd = file_create(name, mode & S_IFMT);
+ fd = file_create(name, mode & 0777);
if (fd < 0)
error = fd;
else