mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use nowait sync request for a vnode when doing softdep cleanup. We possibly
own the unrelated vnode lock, doing waiting sync causes deadlocks. Reported and tested by: pho Approved by: re (bz)
This commit is contained in:
parent
750b5e3134
commit
b296414c62
1 changed files with 1 additions and 1 deletions
|
|
@ -12648,7 +12648,7 @@ retry:
|
|||
MNT_ILOCK(mp);
|
||||
continue;
|
||||
}
|
||||
(void) ffs_syncvnode(lvp, MNT_WAIT);
|
||||
(void) ffs_syncvnode(lvp, MNT_NOWAIT);
|
||||
vput(lvp);
|
||||
MNT_ILOCK(mp);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue