From fd61ccfeb448ff77ff84978df68d9c2b025e0091 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Fri, 19 Feb 2021 14:37:12 +0200 Subject: [PATCH] ffs_reallocblks: change the guard for softdep_prealloc() call to DOINGSUJ() (cherry picked from commit cc9958bf22f1426faf4be8bf492ce69587a9008f) --- sys/ufs/ffs/ffs_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 3b652ea1430..c7a1e2dec15 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -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)