git: 9c5aac8f2e84 - main - fusefs: fix a dead store in fuse_vnop_advlock
Alan Somers
asomers at FreeBSD.org
Sat Mar 20 01:42:17 UTC 2021
The branch main has been updated by asomers:
URL: https://cgit.FreeBSD.org/src/commit/?id=9c5aac8f2e84ca4bbdf82514302c08c0453ec59b
commit 9c5aac8f2e84ca4bbdf82514302c08c0453ec59b
Author: Alan Somers <asomers at FreeBSD.org>
AuthorDate: 2021-03-20 01:38:57 +0000
Commit: Alan Somers <asomers at FreeBSD.org>
CommitDate: 2021-03-20 01:38:57 +0000
fusefs: fix a dead store in fuse_vnop_advlock
kevans actually caught this in the original review and I fixed it, but
then I committed an older copy of the branch. Whoops.
Reported by: kevans
MFC after: 13 days
MFC with: 929acdb19acb67cc0e6ee5439df98e28a84d4772
Differential Revision: https://reviews.freebsd.org/D29031
---
sys/fs/fuse/fuse_vnops.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys/fs/fuse/fuse_vnops.c b/sys/fs/fuse/fuse_vnops.c
index cdbc42f5adf4..a51c1b15e7f0 100644
--- a/sys/fs/fuse/fuse_vnops.c
+++ b/sys/fs/fuse/fuse_vnops.c
@@ -444,7 +444,6 @@ fuse_vnop_advlock(struct vop_advlock_args *ap)
break;
case F_UNLCK:
op = FUSE_SETLK;
- flags |= F_UNLCK;
break;
default:
return EINVAL;
More information about the dev-commits-src-all
mailing list