On 2020/5/11 23:27, Darrick J. Wong wrote: > On Sat, May 09, 2020 at 10:59:47PM +0800, xiakaixu1987@xxxxxxxxx wrote: >> From: Kaixu Xia <kaixuxia@xxxxxxxxxxx> >> >> The warning message should be PQUOTA/GQUOTA_{ENFD|CHKD} can't along >> with superblock earlier than version 5, so fix it. > > Huh? > > Oh, I see, you're trying to fix someone's shortcut in the logging > messages. This is clearer (to me, anyway): > > “Fix this error message to complain about project and group quota flag > bits instead of "PUOTA" and "QUOTA".” > > I'll commit the patch with the above changelog if that's ok? Thanks for your comments! Yes, please. This changelog is more cleaer. > > Reviewed-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > > --D > >> Signed-off-by: Kaixu Xia <kaixuxia@xxxxxxxxxxx> >> --- >> fs/xfs/libxfs/xfs_sb.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/fs/xfs/libxfs/xfs_sb.c b/fs/xfs/libxfs/xfs_sb.c >> index c526c5e5ab76..4df87546bd40 100644 >> --- a/fs/xfs/libxfs/xfs_sb.c >> +++ b/fs/xfs/libxfs/xfs_sb.c >> @@ -243,7 +243,7 @@ xfs_validate_sb_common( >> } else if (sbp->sb_qflags & (XFS_PQUOTA_ENFD | XFS_GQUOTA_ENFD | >> XFS_PQUOTA_CHKD | XFS_GQUOTA_CHKD)) { >> xfs_notice(mp, >> -"Superblock earlier than Version 5 has XFS_[PQ]UOTA_{ENFD|CHKD} bits."); >> +"Superblock earlier than Version 5 has XFS_{P|G}QUOTA_{ENFD|CHKD} bits."); >> return -EFSCORRUPTED; >> } >> >> -- >> 2.20.0 >> -- kaixuxia