The branch main has been updated by asomers: URL: https://cgit.FreeBSD.org/src/commit/?id=8fbae6c7bd63fca64b898843f63cb24269a7dd46
commit 8fbae6c7bd63fca64b898843f63cb24269a7dd46 Author: Alan Somers <[email protected]> AuthorDate: 2021-11-28 23:05:30 +0000 Commit: Alan Somers <[email protected]> CommitDate: 2021-11-28 23:05:30 +0000 fusefs: delete a redundant getnanouptime It's been redundant since SVN r346060 added another getnanouptime just above. MFC after: 2 weeks --- 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 e1c04f1583ba..e61a3cda80a7 100644 --- a/sys/fs/fuse/fuse_vnops.c +++ b/sys/fs/fuse/fuse_vnops.c @@ -1286,7 +1286,6 @@ fuse_vnop_lookup(struct vop_lookup_args *ap) break; case ENOENT: /* negative match */ - getnanouptime(&now); if (timespeccmp(&timeout, &now, <=)) { /* Cache timeout */ cache_purge_negative(dvp);
