mirror of
https://github.com/opnsense/src.git
synced 2026-04-05 01:15:30 -04:00
msdosfs: add a missing MNT_VNODE_FOREACH_ALL_ABORT to msdosfs_sync
This commit is contained in:
parent
2a168f03ac
commit
f342b91c76
1 changed files with 3 additions and 1 deletions
|
|
@ -925,8 +925,10 @@ loop:
|
|||
}
|
||||
error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK, td);
|
||||
if (error) {
|
||||
if (error == ENOENT)
|
||||
if (error == ENOENT) {
|
||||
MNT_VNODE_FOREACH_ALL_ABORT(mp, nvp);
|
||||
goto loop;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
error = VOP_FSYNC(vp, waitfor, td);
|
||||
|
|
|
|||
Loading…
Reference in a new issue