All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHSET 0/8] fstests: random fixes
@ 2022-01-11 21:50 Darrick J. Wong
  2022-01-11 21:50 ` [PATCH 1/8] common/rc: fix _check_xfs_scrub_does_unicode on newer versions of libc-bin Darrick J. Wong
                   ` (8 more replies)
  0 siblings, 9 replies; 23+ messages in thread
From: Darrick J. Wong @ 2022-01-11 21:50 UTC (permalink / raw)
  To: djwong, guaneryu
  Cc: xuyang2018.jy, Theodore Ts'o, linux-xfs, fstests, guan

Hi all,

Here is a pile of random fstests fixes: a couple to fix xfs_scrub
unicode detection; one to fix xfs/220 so that it tests QUOTARM again;
the usual adjustments to fstests to accomodate behavior changes added to
5.17; a regression test for CVE-2021-4155; and cleanups to make fstests
less dependent on XFS_IOC_ALLOCSP/FREESP since those are going away for
5.17.

If you're going to start using this mess, you probably ought to just
pull from my git trees, which are linked below.

This is an extraordinary way to destroy everything.  Enjoy!
Comments and questions are, as always, welcome.

--D

kernel git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-linux.git/log/?h=random-fixes

xfsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=random-fixes

fstests git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=random-fixes
---
 .gitignore        |    1 
 common/rc         |   19 ++++++---
 common/xfs        |   12 +++++
 ltp/fsx.c         |  110 +++++++++++++++++++++++++++++++++++++++++++++++++-
 ltp/iogen.c       |   32 ++++++++++----
 src/Makefile      |    2 -
 src/alloc.c       |   66 +++++++++++++++++++++++++-----
 src/allocstale.c  |  117 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/xfs/130     |    6 ++-
 tests/xfs/130.out |    1 
 tests/xfs/220     |   30 ++++++++++----
 tests/xfs/308     |    5 --
 tests/xfs/308.out |    2 -
 tests/xfs/832     |   56 +++++++++++++++++++++++++
 tests/xfs/832.out |    2 +
 15 files changed, 418 insertions(+), 43 deletions(-)
 create mode 100644 src/allocstale.c
 create mode 100755 tests/xfs/832
 create mode 100644 tests/xfs/832.out


^ permalink raw reply	[flat|nested] 23+ messages in thread
* [PATCHSET 0/8] fstests: random fixes
@ 2021-07-07  0:21 Darrick J. Wong
  2021-07-18 14:35 ` Eryu Guan
  0 siblings, 1 reply; 23+ messages in thread
From: Darrick J. Wong @ 2021-07-07  0:21 UTC (permalink / raw)
  To: djwong, guaneryu; +Cc: linux-xfs, fstests, guan

Hi all,

This series fixes a bunch of small problems in the test suite that were
causing intermittent test failures.

If you're going to start using this mess, you probably ought to just
pull from my git trees, which are linked below.

This is an extraordinary way to destroy everything.  Enjoy!
Comments and questions are, as always, welcome.

--D

kernel git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-linux.git/log/?h=random-fixes

xfsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=random-fixes

fstests git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=random-fixes
---
 check             |   24 +++++++++++++++++-------
 common/dmthin     |    8 ++++++--
 tests/generic/019 |    3 +++
 tests/generic/371 |    8 ++++++++
 tests/generic/561 |    9 +++++++--
 tests/shared/298  |    2 +-
 tests/xfs/084     |    8 ++++++--
 tests/xfs/172     |   30 +++++++++++++++++++++++++++++-
 8 files changed, 77 insertions(+), 15 deletions(-)


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2022-01-19  4:52 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-11 21:50 [PATCHSET 0/8] fstests: random fixes Darrick J. Wong
2022-01-11 21:50 ` [PATCH 1/8] common/rc: fix _check_xfs_scrub_does_unicode on newer versions of libc-bin Darrick J. Wong
2022-01-11 21:50 ` [PATCH 2/8] common/rc: fix unicode checker detection in xfs_scrub Darrick J. Wong
2022-01-11 21:50 ` [PATCH 3/8] xfs/220: fix quotarm syscall test Darrick J. Wong
2022-01-12  1:14   ` xuyang2018.jy
2022-01-14  3:23     ` xuyang2018.jy
2022-01-14 17:08       ` Darrick J. Wong
2022-01-17  1:06         ` xuyang2018.jy
2022-01-11 21:50 ` [PATCH 4/8] xfs: test fixes for new 5.17 behaviors Darrick J. Wong
2022-01-11 21:50 ` [PATCH 5/8] xfs: regression test for allocsp handing out stale disk contents Darrick J. Wong
2022-01-16  7:12   ` Eryu Guan
2022-01-18  3:37   ` Zorro Lang
2022-01-18 18:09     ` Darrick J. Wong
2022-01-19  4:07       ` Zorro Lang
2022-01-19  4:52         ` Darrick J. Wong
2022-01-11 21:50 ` [PATCH 6/8] fsx: add support for XFS_IOC_ALLOCSP Darrick J. Wong
2022-01-11 21:50 ` [PATCH 7/8] iogen: upgrade to fallocate Darrick J. Wong
2022-01-16  7:01   ` Eryu Guan
2022-01-17 17:15     ` Darrick J. Wong
2022-01-11 21:50 ` [PATCH 8/8] alloc: " Darrick J. Wong
2022-01-16  7:16 ` [PATCHSET 0/8] fstests: random fixes Eryu Guan
  -- strict thread matches above, loose matches on Subject: below --
2021-07-07  0:21 Darrick J. Wong
2021-07-18 14:35 ` Eryu Guan

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.