mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
ffs_reallocblks: change the guard for softdep_prealloc() call to DOINGSUJ()
(cherry picked from commit cc9958bf22)
This commit is contained in:
parent
d65b86dd93
commit
fd61ccfeb4
1 changed files with 1 additions and 1 deletions
|
|
@ -543,7 +543,7 @@ ffs_reallocblks(ap)
|
|||
* here. Instead we simply fail to reallocate blocks if this
|
||||
* rare condition arises.
|
||||
*/
|
||||
if (DOINGSOFTDEP(ap->a_vp))
|
||||
if (DOINGSUJ(ap->a_vp))
|
||||
if (softdep_prealloc(ap->a_vp, MNT_NOWAIT) != 0)
|
||||
return (ENOSPC);
|
||||
if (ump->um_fstype == UFS1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue