Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f948fbd authored by Tim Shimmin's avatar Tim Shimmin Committed by Nathan Scott
Browse files

[XFS] Need to unlock the AIL before calling xfs_force_shutdown() because


when it goes to force out the log, and get the tail lsn, it will want to
get the AIL lock.

SGI-PV: 940076
SGI-Modid: xfs-linux:xfs-kern:23260a

Signed-off-by: default avatarTim Shimmin <tes@sgi.com>
Signed-off-by: default avatarNathan Scott <nathans@sgi.com>
parent 0432dab2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -379,8 +379,8 @@ xfs_trans_delete_ail(
		else {
			xfs_cmn_err(XFS_PTAG_AILDELETE, CE_ALERT, mp,
				"xfs_trans_delete_ail: attempting to delete a log item that is not in the AIL");
			xfs_force_shutdown(mp, XFS_CORRUPT_INCORE);
			AIL_UNLOCK(mp, s);
			xfs_force_shutdown(mp, XFS_CORRUPT_INCORE);
		}
	}
}