mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Refactor, moving error checking outside of the
'if (mp->mnt_flag & MNT_SOFTDEP)' conditional. No functional changes. Reviewed by: kib Approved by: rwatson (mentor) Tested by: pho Sponsored by: FreeBSD Foundation
This commit is contained in:
parent
539fe40650
commit
3c140b2df4
1 changed files with 7 additions and 7 deletions
|
|
@ -1075,13 +1075,13 @@ ffs_unmount(mp, mntflags, td)
|
|||
vn_start_write(NULL, &mp, V_WAIT);
|
||||
}
|
||||
}
|
||||
if (mp->mnt_flag & MNT_SOFTDEP) {
|
||||
if ((error = softdep_flushfiles(mp, flags, td)) != 0)
|
||||
goto fail;
|
||||
} else {
|
||||
if ((error = ffs_flushfiles(mp, flags, td)) != 0)
|
||||
goto fail;
|
||||
}
|
||||
if (mp->mnt_flag & MNT_SOFTDEP)
|
||||
error = softdep_flushfiles(mp, flags, td);
|
||||
else
|
||||
error = ffs_flushfiles(mp, flags, td);
|
||||
if (error != 0)
|
||||
goto fail;
|
||||
|
||||
UFS_LOCK(ump);
|
||||
if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
|
||||
printf("%s: unmount pending error: blocks %jd files %d\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue