aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/xfs/libxfs/xfs_sb.c24
-rw-r--r--fs/xfs/xfs_mount.c1
2 files changed, 20 insertions, 5 deletions
diff --git a/fs/xfs/libxfs/xfs_sb.c b/fs/xfs/libxfs/xfs_sb.c
index f5ca0286a0af..8db9e923a53e 100644
--- a/fs/xfs/libxfs/xfs_sb.c
+++ b/fs/xfs/libxfs/xfs_sb.c
@@ -386,10 +386,11 @@ xfs_sb_quota_from_disk(struct xfs_sb *sbp)
386 } 386 }
387} 387}
388 388
389void 389static void
390xfs_sb_from_disk( 390__xfs_sb_from_disk(
391 struct xfs_sb *to, 391 struct xfs_sb *to,
392 xfs_dsb_t *from) 392 xfs_dsb_t *from,
393 bool convert_xquota)
393{ 394{
394 to->sb_magicnum = be32_to_cpu(from->sb_magicnum); 395 to->sb_magicnum = be32_to_cpu(from->sb_magicnum);
395 to->sb_blocksize = be32_to_cpu(from->sb_blocksize); 396 to->sb_blocksize = be32_to_cpu(from->sb_blocksize);
@@ -445,6 +446,17 @@ xfs_sb_from_disk(
445 to->sb_pad = 0; 446 to->sb_pad = 0;
446 to->sb_pquotino = be64_to_cpu(from->sb_pquotino); 447 to->sb_pquotino = be64_to_cpu(from->sb_pquotino);
447 to->sb_lsn = be64_to_cpu(from->sb_lsn); 448 to->sb_lsn = be64_to_cpu(from->sb_lsn);
449 /* Convert on-disk flags to in-memory flags? */
450 if (convert_xquota)
451 xfs_sb_quota_from_disk(to);
452}
453
454void
455xfs_sb_from_disk(
456 struct xfs_sb *to,
457 xfs_dsb_t *from)
458{
459 __xfs_sb_from_disk(to, from, true);
448} 460}
449 461
450static inline void 462static inline void
@@ -560,7 +572,11 @@ xfs_sb_verify(
560 struct xfs_mount *mp = bp->b_target->bt_mount; 572 struct xfs_mount *mp = bp->b_target->bt_mount;
561 struct xfs_sb sb; 573 struct xfs_sb sb;
562 574
563 xfs_sb_from_disk(&sb, XFS_BUF_TO_SBP(bp)); 575 /*
576 * Use call variant which doesn't convert quota flags from disk
577 * format, because xfs_mount_validate_sb checks the on-disk flags.
578 */
579 __xfs_sb_from_disk(&sb, XFS_BUF_TO_SBP(bp), false);
564 580
565 /* 581 /*
566 * Only check the in progress field for the primary superblock as 582 * Only check the in progress field for the primary superblock as
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
index d5c44a6bdb5b..5612aa8b46ad 100644
--- a/fs/xfs/xfs_mount.c
+++ b/fs/xfs/xfs_mount.c
@@ -324,7 +324,6 @@ reread:
324 * Initialize the mount structure from the superblock. 324 * Initialize the mount structure from the superblock.
325 */ 325 */
326 xfs_sb_from_disk(sbp, XFS_BUF_TO_SBP(bp)); 326 xfs_sb_from_disk(sbp, XFS_BUF_TO_SBP(bp));
327 xfs_sb_quota_from_disk(sbp);
328 327
329 /* 328 /*
330 * If we haven't validated the superblock, do so now before we try 329 * If we haven't validated the superblock, do so now before we try