mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
fs/9p: Fix bit operation logic error
This re-introduces a fix that somehow got dropped during rebase of the current series in for-next. When writeback is enabled, opens are forced to support both read and write operations but with the logic error other flags may be dropped unintentionaly. Reported-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr> Signed-off-by: Eric Van Hensbergen <ericvh@kernel.org>
This commit is contained in:
parent
4eb3117888
commit
21e26d5e54
@ -823,7 +823,7 @@ v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
|
||||
p9_omode = v9fs_uflags2omode(flags, v9fs_proto_dotu(v9ses));
|
||||
|
||||
if ((v9ses->cache & CACHE_WRITEBACK) && (p9_omode & P9_OWRITE)) {
|
||||
p9_omode = (p9_omode & !P9_OWRITE) | P9_ORDWR;
|
||||
p9_omode = (p9_omode & ~P9_OWRITE) | P9_ORDWR;
|
||||
p9_debug(P9_DEBUG_CACHE,
|
||||
"write-only file with writeback enabled, creating w/ O_RDWR\n");
|
||||
}
|
||||
|
@ -288,7 +288,7 @@ v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
|
||||
}
|
||||
|
||||
if ((v9ses->cache & CACHE_WRITEBACK) && (p9_omode & P9_OWRITE)) {
|
||||
p9_omode = (p9_omode & !P9_OWRITE) | P9_ORDWR;
|
||||
p9_omode = (p9_omode & ~P9_OWRITE) | P9_ORDWR;
|
||||
p9_debug(P9_DEBUG_CACHE,
|
||||
"write-only file with writeback enabled, creating w/ O_RDWR\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user