public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] fstests: for-next branch updated to 781bb995a149
@ 2022-05-15  5:43 Zorro Lang
  2022-05-17  9:18 ` Christian Brauner
  0 siblings, 1 reply; 2+ messages in thread
From: Zorro Lang @ 2022-05-15  5:43 UTC (permalink / raw)
  To: fstests

[-- Attachment #1: Type: text/plain, Size: 4646 bytes --]

Hi all,

The for-next branch of the xfstests repository at:

	git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git

has just been updated and tagged as v2022.05.15 release.

There're two improvements:
1) A big change from Christian is the whole src/idmapped-mounts refactoring, so
if have old related patches, please rebase on the latest for-next. Thanks!
2) Overlay testing supports tmpfs to be its basefs now.

A change on ext4/053 cause a new failure. Don't worry, it's not a kernel
regression, and will be fixed by:
https://lore.kernel.org/r/20220510183232.172615-1-ebiggers@kernel.org

Thanks,
Zorro

The new head of the for-next branch is commit:

781bb995a149 vfs/idmapped-mounts: remove invalid test

New commits ([U]pdate, [N]ew) :

Baokun Li (1):
(U)      [92fb58afaa2f] common: xfstests support overlay+tmpfs

Christian Brauner (13):
(U)      [90c001261171] idmapped-mounts: make all tests set their required feature flags
(U)      [4cacbf7ae101] src: rename idmapped-mounts folder
(U)      [3607df35e440] src/vfs: rename idmapped-mounts.c file
(U)      [2d642516a73f] vfstest: rename struct t_idmapped_mounts
(U)      [836c87fb1e7b] utils: add missing global.h include
(U)      [e5f0de862eaa] utils: add struct vfstest_info
(U)      [6631d37ef388] utils: move helpers into utils
(U)      [c688623db6b5] missing: move sys_execveat() to missing.h
(U)      [0a26b226d838] utils: add struct test_suite
(U)      [48fdc9dd7dac] vfstest: split idmapped mount tests into separate suite
(U)      [3bc939bccca5] vfstest: split out btrfs idmapped mounts test
(U)      [a05df8ab47c5] vfstest: split out remaining idmapped mount tests
(U)      [781bb995a149] vfs/idmapped-mounts: remove invalid test

Eric Biggers (1):
(U)      [b03323c1d990] ext4/053: fix the rejected mount option testing

Filipe Manana (1):
(N)      [93db14575cd0] generic: test fsync of directory with renamed symlink

Gabriel Krisman Bertazi (1):
(U)      [7a2adb8f44e5] casefold: Fix expansion of seqres variable

Yang Xu (1):
(U)      [653da5b66160] generic/68[3-7]: Add separate sgid stripping sub-tests


Code Diffstat:

 .gitignore                                    |     4 +-
 common/casefold                               |     4 +-
 common/config                                 |    12 +-
 common/overlay                                |     2 +-
 common/rc                                     |    71 +-
 src/Makefile                                  |     2 +-
 src/detached_mounts_propagation.c             |     2 +-
 src/feature.c                                 |     2 +-
 src/idmapped-mounts/idmapped-mounts.c         | 14625 ------------------------
 src/idmapped-mounts/utils.c                   |   425 -
 src/idmapped-mounts/utils.h                   |   130 -
 src/{idmapped-mounts => vfs}/Makefile         |    14 +-
 src/vfs/btrfs-idmapped-mounts.c               |  3854 +++++++
 src/vfs/btrfs-idmapped-mounts.h               |    15 +
 src/vfs/idmapped-mounts.c                     |  7747 +++++++++++++
 src/vfs/idmapped-mounts.h                     |    18 +
 src/{idmapped-mounts => vfs}/missing.h        |    11 +
 src/{idmapped-mounts => vfs}/mount-idmapped.c |     0
 src/vfs/utils.c                               |  1050 ++
 src/vfs/utils.h                               |   373 +
 src/vfs/vfstest.c                             |  2073 ++++
 tests/btrfs/245                               |     2 +-
 tests/ext4/053                                |   148 +-
 tests/generic/633                             |     2 +-
 tests/generic/644                             |     2 +-
 tests/generic/645                             |     2 +-
 tests/generic/656                             |     2 +-
 tests/generic/683                             |    69 +-
 tests/generic/683.out                         |    16 +
 tests/generic/684                             |    69 +-
 tests/generic/684.out                         |    16 +
 tests/generic/685                             |    69 +-
 tests/generic/685.out                         |    16 +
 tests/generic/686                             |    69 +-
 tests/generic/686.out                         |    16 +
 tests/generic/687                             |    69 +-
 tests/generic/687.out                         |    16 +
 tests/generic/689                             |     4 +-
 tests/generic/690                             |    90 +
 tests/generic/690.out                         |     2 +
 tests/xfs/152                                 |     4 +-
 tests/xfs/153                                 |     2 +-
 42 files changed, 15668 insertions(+), 15451 deletions(-)
--
Zorro Lang
zlang@kernel.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [ANNOUNCE] fstests: for-next branch updated to 781bb995a149
  2022-05-15  5:43 [ANNOUNCE] fstests: for-next branch updated to 781bb995a149 Zorro Lang
@ 2022-05-17  9:18 ` Christian Brauner
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Brauner @ 2022-05-17  9:18 UTC (permalink / raw)
  To: Zorro Lang; +Cc: fstests

On Sun, May 15, 2022 at 01:43:15PM +0800, Zorro Lang wrote:
> Hi all,
> 
> The for-next branch of the xfstests repository at:
> 
> 	git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git
> 
> has just been updated and tagged as v2022.05.15 release.
> 
> There're two improvements:
> 1) A big change from Christian is the whole src/idmapped-mounts refactoring, so
> if have old related patches, please rebase on the latest for-next. Thanks!

Thank you for your support!

Christian

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

end of thread, other threads:[~2022-05-17  9:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-15  5:43 [ANNOUNCE] fstests: for-next branch updated to 781bb995a149 Zorro Lang
2022-05-17  9:18 ` Christian Brauner

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