| To: | david@xxxxxxxxxxxxx, darrick.wong@xxxxxxxxxx |
|---|---|
| Subject: | [PATCH 51/51] mkfs: hack around not having enough log blocks |
| From: | "Darrick J. Wong" <darrick.wong@xxxxxxxxxx> |
| Date: | Tue, 06 Oct 2015 22:10:45 -0700 |
| Cc: | xfs@xxxxxxxxxxx |
| Delivered-to: | xfs@xxxxxxxxxxx |
| In-reply-to: | <20151007050513.1504.28089.stgit@xxxxxxxxxxxxxxxx> |
| References: | <20151007050513.1504.28089.stgit@xxxxxxxxxxxxxxxx> |
| User-agent: | StGit/0.17.1-dirty |
Under some circumstances I don't yet understand, mkfs underestimates
the minimum log size and the kernel refuses to mount. Put in a crude
hack so that this doesn't happen.
DO NOT APPLY!!!
Singed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx>
---
mkfs/xfs_mkfs.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index 556b691..ab1e8f9 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -2401,6 +2401,7 @@ an AG size that is one stripe unit smaller, for example
%llu.\n"),
logversion, lsunit);
ASSERT(min_logblocks);
min_logblocks = MAX(XFS_MIN_LOG_BLOCKS, min_logblocks);
+if (min_logblocks < 860) min_logblocks = 860;
if (!logsize && dblocks >= (1024*1024*1024) >> blocklog)
min_logblocks = MAX(min_logblocks, XFS_MIN_LOG_BYTES>>blocklog);
if (logsize && xi.logBBsize > 0 && logblocks > DTOBT(xi.logBBsize)) {
|
| Previous by Date: | [PATCH 50/51] mkfs.xfs: format reflink enabled filesystems, Darrick J. Wong |
|---|---|
| Next by Date: | [RFCv3 00/12] xfstests: test the btrfs/xfs reflink/dedupe ioctls, Darrick J. Wong |
| Previous by Thread: | [PATCH 50/51] mkfs.xfs: format reflink enabled filesystems, Darrick J. Wong |
| Next by Thread: | [RFCv3 00/12] xfstests: test the btrfs/xfs reflink/dedupe ioctls, Darrick J. Wong |
| Indexes: | [Date] [Thread] [Top] [All Lists] |