git: 57582311c3e0 - releng/13.0 - ffs_syncvnode: only clear IN_NEEDSYNC after successfull sync

Konstantin Belousov kib at FreeBSD.org
Thu Feb 25 20:52:17 UTC 2021


The branch releng/13.0 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=57582311c3e099d91bd213c0c6f3af1f3119bc01

commit 57582311c3e099d91bd213c0c6f3af1f3119bc01
Author:     Konstantin Belousov <kib at FreeBSD.org>
AuthorDate: 2021-01-23 21:50:55 +0000
Commit:     Konstantin Belousov <kib at FreeBSD.org>
CommitDate: 2021-02-25 20:48:18 +0000

    ffs_syncvnode: only clear IN_NEEDSYNC after successfull sync
    
    Approved by:    re (delphij, gjb)
    
    (cherry picked from commit 1de1e2bfbf3c089418bbe67c096d60315c8ca5dd)
---
 sys/ufs/ffs/ffs_vnops.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c
index 68985d8715f3..be2653e32adc 100644
--- a/sys/ufs/ffs/ffs_vnops.c
+++ b/sys/ufs/ffs/ffs_vnops.c
@@ -257,7 +257,6 @@ ffs_syncvnode(struct vnode *vp, int waitfor, int flags)
 	bool still_dirty, unlocked, wait;
 
 	ip = VTOI(vp);
-	ip->i_flag &= ~IN_NEEDSYNC;
 	bo = &vp->v_bufobj;
 	ump = VFSTOUFS(vp->v_mount);
 
@@ -445,6 +444,8 @@ next:
 	}
 	if (error == 0 && unlocked)
 		error = ERELOOKUP;
+	if (error == 0)
+		ip->i_flag &= ~IN_NEEDSYNC;
 	return (error);
 }
 


More information about the dev-commits-src-all mailing list