The branch main has been updated by mjg:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=712806fc4b5470eb7d9ce537e3cdf3b386455d86

commit 712806fc4b5470eb7d9ce537e3cdf3b386455d86
Author:     Mateusz Guzik <[email protected]>
AuthorDate: 2023-08-24 22:49:47 +0000
Commit:     Mateusz Guzik <[email protected]>
CommitDate: 2023-08-24 22:50:31 +0000

    vfs: retried++ -> retried = true for the boolean
    
    No real changes.
    
    Noted by:       rpokala
---
 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 f1e1d1e3a0ca..1c6827ba0587 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1310,7 +1310,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;
                        }
 

Reply via email to