git: edfae4b4d2b5 - stable/13 - vfs: retried++ -> retried = true for the boolean
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 27 Aug 2023 22:45:18 UTC
The branch stable/13 has been updated by mjg:
URL: https://cgit.FreeBSD.org/src/commit/?id=edfae4b4d2b5b5d930c1d175561b722286154dd6
commit edfae4b4d2b5b5d930c1d175561b722286154dd6
Author: Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2023-08-24 22:49:47 +0000
Commit: Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2023-08-27 22:44:12 +0000
vfs: retried++ -> retried = true for the boolean
No real changes.
Noted by: rpokala
(cherry picked from commit 712806fc4b5470eb7d9ce537e3cdf3b386455d86)
---
sys/kern/vfs_subr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 484ad75b243e..209d6ac37cda 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1298,7 +1298,7 @@ vnlru_free_impl(int count, struct vfsops *mnt_op, struct vnode *mvp)
TAILQ_REMOVE(&vnode_list, mvp, v_vnodelist);
TAILQ_INSERT_HEAD(&vnode_list, mvp, v_vnodelist);
vp = mvp;
- retried++;
+ retried = true;
continue;
}