diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-22 17:20:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-22 17:20:48 -0500 |
commit | fe35d4a0289a8d6efcacb57e9a377b845686df10 (patch) | |
tree | 05ff26e6658d3ddc6e4885059bbf018b1681bb3b /fs/anon_inodes.c | |
parent | 9917f7bbe96432012d3ad8075e9fd99390255d0c (diff) | |
parent | 28ba0ec64ca0f6ad2b0338ccec0b00a4e64e7a69 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6:
jfs: Fix 32bit build warning
Remove obsolete comment in fs.h
Sanitize f_flags helpers
Fix f_flags/f_mode in case of lookup_instantiate_filp() from open(pathname, 3)
anonfd: Allow making anon files read-only
fs/compat_ioctl.c: fix build error when !BLOCK
pohmelfs needs I_LOCK
alloc_file(): simplify handling of mnt_clone_write() errors
Diffstat (limited to 'fs/anon_inodes.c')
-rw-r--r-- | fs/anon_inodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c index 2c994591f4d7..9f0bf13291e5 100644 --- a/fs/anon_inodes.c +++ b/fs/anon_inodes.c | |||
@@ -121,13 +121,13 @@ struct file *anon_inode_getfile(const char *name, | |||
121 | d_instantiate(path.dentry, anon_inode_inode); | 121 | d_instantiate(path.dentry, anon_inode_inode); |
122 | 122 | ||
123 | error = -ENFILE; | 123 | error = -ENFILE; |
124 | file = alloc_file(&path, FMODE_READ | FMODE_WRITE, fops); | 124 | file = alloc_file(&path, OPEN_FMODE(flags), fops); |
125 | if (!file) | 125 | if (!file) |
126 | goto err_dput; | 126 | goto err_dput; |
127 | file->f_mapping = anon_inode_inode->i_mapping; | 127 | file->f_mapping = anon_inode_inode->i_mapping; |
128 | 128 | ||
129 | file->f_pos = 0; | 129 | file->f_pos = 0; |
130 | file->f_flags = O_RDWR | (flags & O_NONBLOCK); | 130 | file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); |
131 | file->f_version = 0; | 131 | file->f_version = 0; |
132 | file->private_data = priv; | 132 | file->private_data = priv; |
133 | 133 | ||