public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCHSET 0/1] fstests: updates for Linux 6.7
@ 2023-11-08 21:29 Darrick J. Wong
  2023-11-08 21:29 ` [PATCH 1/1] generic: test reads racing with slow reflink operations Darrick J. Wong
  0 siblings, 1 reply; 10+ messages in thread
From: Darrick J. Wong @ 2023-11-08 21:29 UTC (permalink / raw)
  To: djwong, zlang
  Cc: Christoph Hellwig, Catherine Hoang, guan, fstests, linux-xfs

Hi all,

This is pending fixes for things that are going to get merged in 6.7.

If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.

This has been running on the djcloud for months with no problems.  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=xfs-merge-6.7

fstests git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=xfs-merge-6.7
---
 configure.ac              |    1 
 include/builddefs.in      |    1 
 m4/package_libcdev.m4     |   12 ++
 src/Makefile              |    4 +
 src/t_reflink_read_race.c |  339 +++++++++++++++++++++++++++++++++++++++++++++
 tests/generic/1953        |   74 ++++++++++
 tests/generic/1953.out    |    6 +
 7 files changed, 437 insertions(+)
 create mode 100644 src/t_reflink_read_race.c
 create mode 100755 tests/generic/1953
 create mode 100644 tests/generic/1953.out


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCHSET v2 0/1] fstests: updates for Linux 6.7
@ 2023-11-13 17:08 Darrick J. Wong
  2023-11-13 17:08 ` [PATCH 1/1] generic: test reads racing with slow reflink operations Darrick J. Wong
  0 siblings, 1 reply; 10+ messages in thread
From: Darrick J. Wong @ 2023-11-13 17:08 UTC (permalink / raw)
  To: zlang, djwong
  Cc: Christoph Hellwig, Catherine Hoang, linux-xfs, fstests, guan

Hi all,

This is pending fixes for things that are going to get merged in 6.7.
This time around it's merely a functional test for a locking relaxation
in the xfs FICLONE implementation.

v2: implement review suggestions

If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.

This has been running on the djcloud for months with no problems.  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=xfs-merge-6.7

fstests git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=xfs-merge-6.7
---
 configure.ac              |    1 
 include/builddefs.in      |    1 
 m4/package_libcdev.m4     |   13 ++
 src/Makefile              |    4 +
 src/t_reflink_read_race.c |  339 +++++++++++++++++++++++++++++++++++++++++++++
 tests/generic/1953        |   75 ++++++++++
 tests/generic/1953.out    |    6 +
 7 files changed, 439 insertions(+)
 create mode 100644 src/t_reflink_read_race.c
 create mode 100755 tests/generic/1953
 create mode 100644 tests/generic/1953.out


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCHSET v3 0/1] fstests: updates for Linux 6.7
@ 2023-11-16 17:30 Darrick J. Wong
  2023-11-16 17:30 ` [PATCH 1/1] generic: test reads racing with slow reflink operations Darrick J. Wong
  0 siblings, 1 reply; 10+ messages in thread
From: Darrick J. Wong @ 2023-11-16 17:30 UTC (permalink / raw)
  To: zlang, djwong
  Cc: Christoph Hellwig, Catherine Hoang, fstests, guan, linux-xfs

Hi all,

This is pending fixes for things that are going to get merged in 6.7.
This time around it's merely a functional test for a locking relaxation
in the xfs FICLONE implementation.

v2: implement review suggestions
v3: add more review tags

If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.

This has been running on the djcloud for months with no problems.  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=xfs-merge-6.7

fstests git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=xfs-merge-6.7
---
 configure.ac              |    1 
 include/builddefs.in      |    1 
 m4/package_libcdev.m4     |   13 ++
 src/Makefile              |    4 +
 src/t_reflink_read_race.c |  339 +++++++++++++++++++++++++++++++++++++++++++++
 tests/generic/1953        |   75 ++++++++++
 tests/generic/1953.out    |    6 +
 7 files changed, 439 insertions(+)
 create mode 100644 src/t_reflink_read_race.c
 create mode 100755 tests/generic/1953
 create mode 100644 tests/generic/1953.out


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

end of thread, other threads:[~2023-11-16 17:30 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-08 21:29 [PATCHSET 0/1] fstests: updates for Linux 6.7 Darrick J. Wong
2023-11-08 21:29 ` [PATCH 1/1] generic: test reads racing with slow reflink operations Darrick J. Wong
2023-11-10 14:40   ` Zorro Lang
2023-11-11 22:20     ` Darrick J. Wong
2023-11-11 22:22   ` [PATCH v2 " Darrick J. Wong
2023-11-12  2:42     ` Zorro Lang
2023-11-13 16:46       ` Darrick J. Wong
  -- strict thread matches above, loose matches on Subject: below --
2023-11-13 17:08 [PATCHSET v2 0/1] fstests: updates for Linux 6.7 Darrick J. Wong
2023-11-13 17:08 ` [PATCH 1/1] generic: test reads racing with slow reflink operations Darrick J. Wong
2023-11-16  7:31   ` Zorro Lang
2023-11-16 17:30 [PATCHSET v3 0/1] fstests: updates for Linux 6.7 Darrick J. Wong
2023-11-16 17:30 ` [PATCH 1/1] generic: test reads racing with slow reflink operations Darrick J. Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox