All of lore.kernel.org
 help / color / mirror / Atom feed
From: Murphy Zhou <jencce.kernel@gmail.com>
To: fstests@vger.kernel.org
Cc: linux-xfs@vger.kernel.org
Subject: [PATCH v3 0/4] tweaks for denying tiny xfs
Date: Tue, 30 Aug 2022 12:44:29 +0800	[thread overview]
Message-ID: <20220830044433.1719246-1-jencce.kernel@gmail.com> (raw)

Since this xfsprogs commit:
  6e0ed3d19c54 mkfs: stop allowing tiny filesystems
xfs refuses filesystem size less then 300m, log size less then 64m,
and filesystems with single AG.

And with this xfsprogs commit
  1b580a773 mkfs: don't let internal logs bump the root dir inode chunk to AG 1
part of xfs/144 is removed as it is not allowed.

v3:
	Fix more fs size and log size limitation;
	Fix more single AG tests;
	Fix xfs/144;
	Tested group all excluding some testcases from dangerous_fuzzers group
v2:
	Fix more about 300m limit;
	Fix about log size larger then 64m;
	Remove xfs/202

Murphy Zhou (4):
  tests: increase fs size for mkfs
  tests: increase xfs log size
  tests/xfs: remove single-AG options
  xfs/144: remove testing root dir inode in AG 1

 common/config         |    2 +-
 common/log            |    8 +-
 common/xfs            |    6 +-
 tests/generic/015     |    2 +-
 tests/generic/027     |    2 +-
 tests/generic/042     |    3 +
 tests/generic/054.out | 1410 -----------------------------------------
 tests/generic/055.out |  126 ----
 tests/generic/077     |    2 +-
 tests/generic/081     |    6 +-
 tests/generic/083     |    2 +-
 tests/generic/085     |    2 +-
 tests/generic/108     |    4 +-
 tests/generic/204     |    2 +-
 tests/generic/226     |    2 +-
 tests/generic/250     |    2 +-
 tests/generic/252     |    2 +-
 tests/generic/371     |    2 +-
 tests/generic/387     |    2 +-
 tests/generic/416     |    2 +-
 tests/generic/416.out |    2 +-
 tests/generic/427     |    2 +-
 tests/generic/449     |    2 +-
 tests/generic/455     |    2 +-
 tests/generic/457     |    2 +-
 tests/generic/482     |    2 +-
 tests/generic/511     |    2 +-
 tests/generic/520     |    4 +-
 tests/generic/536     |    2 +-
 tests/generic/619     |    2 +-
 tests/generic/626     |    2 +-
 tests/xfs/002         |    2 +-
 tests/xfs/015         |    2 +-
 tests/xfs/041         |    8 +-
 tests/xfs/041.out     |   10 +-
 tests/xfs/042         |    2 +-
 tests/xfs/049         |    2 +-
 tests/xfs/073         |    2 +-
 tests/xfs/076         |    2 +-
 tests/xfs/078         |    6 +-
 tests/xfs/078.out     |   23 +-
 tests/xfs/104         |    6 +-
 tests/xfs/104.out     |   30 -
 tests/xfs/107         |    4 +-
 tests/xfs/118         |    4 +-
 tests/xfs/144         |   10 +-
 tests/xfs/148         |    2 +-
 tests/xfs/149         |   12 +-
 tests/xfs/168         |    2 +-
 tests/xfs/170         |   10 +-
 tests/xfs/170.out     |    8 +-
 tests/xfs/171         |   10 +-
 tests/xfs/171.out     |    8 +-
 tests/xfs/172         |    4 +-
 tests/xfs/172.out     |    4 +-
 tests/xfs/173         |   10 +-
 tests/xfs/173.out     |    8 +-
 tests/xfs/174         |    4 +-
 tests/xfs/174.out     |    4 +-
 tests/xfs/176         |    2 +-
 tests/xfs/179         |    2 +-
 tests/xfs/202         |   40 --
 tests/xfs/202.out     |   29 -
 tests/xfs/205         |    2 +-
 tests/xfs/206         |    2 +-
 tests/xfs/227         |    2 +-
 tests/xfs/233         |    2 +-
 tests/xfs/250         |    6 +-
 tests/xfs/259         |    2 +-
 tests/xfs/279         |    6 +-
 tests/xfs/289         |   22 +-
 tests/xfs/291         |    4 +-
 tests/xfs/306         |    2 +-
 tests/xfs/445         |    2 +-
 tests/xfs/514         |    2 +-
 tests/xfs/520         |    2 +-
 76 files changed, 151 insertions(+), 1790 deletions(-)
 delete mode 100755 tests/xfs/202
 delete mode 100644 tests/xfs/202.out

-- 
2.31.1


             reply	other threads:[~2022-08-30  4:44 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-30  4:44 Murphy Zhou [this message]
2022-08-30  4:44 ` [PATCH v3 1/4] tests: increase fs size for mkfs Murphy Zhou
2022-08-30  7:36   ` Zorro Lang
2022-08-30 14:46     ` Darrick J. Wong
2022-08-30 19:07       ` Zorro Lang
2022-08-31  0:18         ` Murphy Zhou
2022-08-31  1:53           ` Murphy Zhou
2022-08-31  5:04             ` Zorro Lang
2022-08-31  9:34               ` Murphy Zhou
2022-08-30  4:44 ` [PATCH v3 2/4] tests: increase xfs log size Murphy Zhou
2022-08-30  4:44 ` [PATCH v3 3/4] tests/xfs: remove single-AG options Murphy Zhou
2022-08-30 13:42   ` Zorro Lang
2022-08-31  0:02     ` Murphy Zhou
2022-08-30 15:05   ` Darrick J. Wong
2022-08-31  0:10     ` Murphy Zhou
2022-08-30  4:44 ` [PATCH v3 4/4] xfs/144: remove testing root dir inode in AG 1 Murphy Zhou
2022-08-30  7:49   ` Zorro Lang
2022-08-30 14:59     ` Darrick J. Wong
2022-08-30 23:45       ` Murphy Zhou
2022-08-30 23:42     ` Murphy Zhou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220830044433.1719246-1-jencce.kernel@gmail.com \
    --to=jencce.kernel@gmail.com \
    --cc=fstests@vger.kernel.org \
    --cc=linux-xfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.