diff options
author | Jiachen Zhang <[email protected]> | 2023-06-08 16:46:09 +0800 |
---|---|---|
committer | Miklos Szeredi <[email protected]> | 2024-03-06 09:56:54 +0100 |
commit | 8a5fb186431326886ccc7b71d40aaf5e53b5d91a (patch) | |
tree | 7c3d8c139a2f1e45eb010d78f13f699c896c94da | |
parent | 2e3f7dd08d70eca86a8cc9b4baf3da77c032d5fc (diff) |
fuse: remove an unnecessary if statement
FUSE remote locking code paths never add any locking state to
inode->i_flctx, so the locks_remove_posix() function called on
file close will return without calling fuse_setlk().
Therefore, as the if statement to be removed in this commit will
always be false, remove it for clearness.
Signed-off-by: Jiachen Zhang <[email protected]>
Signed-off-by: Miklos Szeredi <[email protected]>
-rw-r--r-- | fs/fuse/file.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 761ae81ef41d..bd62be510a94 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -2678,10 +2678,6 @@ static int fuse_setlk(struct file *file, struct file_lock *fl, int flock) return -ENOLCK; } - /* Unlock on close is handled by the flush method */ - if ((fl->fl_flags & FL_CLOSE_POSIX) == FL_CLOSE_POSIX) - return 0; - fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg); err = fuse_simple_request(fm, &args); |