All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] fstests: master branch updated to 1e24e5173efa
@ 2017-11-12  9:09 Eryu Guan
  2017-11-12  9:50 ` Amir Goldstein
  0 siblings, 1 reply; 3+ messages in thread
From: Eryu Guan @ 2017-11-12  9:09 UTC (permalink / raw)
  To: fstests

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

Hi all,

The master branch of the xfstests repository at:

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

have just been updated. This update contains a new open_by_handle test from
Amir and the remaining bits from Darrick to prepare for v4.15 merge window.
Other commits are random bug fixes.

New failures I've noticed in this update:
- generic/467 fails on NFSv3 and NFSv4.0 (passes on NFSv4.[12] though)

Thanks,
Eryu

The new head of the master branch is commit:

1e24e5173efa generic/204: use available blocks to determine the number of files to create

New commits:

Amir Goldstein (7):
      [80bfe0c15864] open_by_handle: add filename to error reports
      [91a6f4c5779f] open_by_handle: test file handles of renamed files
      [31ce8beba2ed] open_by_handle: test content of open file handle
      [fcaeb02ed177] open_by_handle: test directory file handle
      [48a67c354304] open_by_handle: test file handles of open files
      [d732a15548ef] generic/426: factor out helper functions
      [d360eeaff8ad] generic: add test with more open by file handle use cases

Darrick J. Wong (4):
      [ee3f35961f3c] xfs/31[2-7]: hide pwrite fsync errors that are supposed to fail
      [c0c26cecab8a] common/fuzzy: ignore padding fields on xfs
      [a9df2f23dfc8] xfs: test that we don't leak inodes and dquots during failed cow recovery
      [1e24e5173efa] generic/204: use available blocks to determine the number of files to create

Eryu Guan (2):
      [8fd019ba7a44] ltp/fsx: allow comments when reading operations from logs
      [32a8ebcbe6cf] fstests: do not call _scratch_mkfs_sized in a pipe

Misono, Tomohiro (1):
      [7988dbbcebff] common/filter.btrfs: add 'zstd' to compress property filter


Code Diffstat:

 common/filter.btrfs   |   2 +-
 common/fuzzy          |  14 ++-
 common/rc             |   1 +
 ltp/fsx.c             |   2 +-
 src/open_by_handle.c  | 247 ++++++++++++++++++++++++++++++++++++++++++++------
 tests/generic/204     |  18 +++-
 tests/generic/426     |  40 +++++---
 tests/generic/426.out |   4 +
 tests/generic/467     | 119 ++++++++++++++++++++++++
 tests/generic/467.out |  10 ++
 tests/generic/group   |   1 +
 tests/xfs/015         |   3 +-
 tests/xfs/312         |   2 +-
 tests/xfs/313         |   2 +-
 tests/xfs/314         |   2 +-
 tests/xfs/315         |   2 +-
 tests/xfs/317         |   2 +-
 tests/xfs/326         |   2 +-
 tests/xfs/434         | 111 +++++++++++++++++++++++
 tests/xfs/434.out     |   9 ++
 tests/xfs/435         |  89 ++++++++++++++++++
 tests/xfs/435.out     |   5 +
 tests/xfs/436         | 105 +++++++++++++++++++++
 tests/xfs/436.out     |   9 ++
 tests/xfs/group       |   3 +
 25 files changed, 749 insertions(+), 55 deletions(-)
--
Eryu Guan
eguan@redhat.com

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

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

* Re: [ANNOUNCE] fstests: master branch updated to 1e24e5173efa
  2017-11-12  9:09 [ANNOUNCE] fstests: master branch updated to 1e24e5173efa Eryu Guan
@ 2017-11-12  9:50 ` Amir Goldstein
  2017-11-13  4:12   ` Eryu Guan
  0 siblings, 1 reply; 3+ messages in thread
From: Amir Goldstein @ 2017-11-12  9:50 UTC (permalink / raw)
  To: Eryu Guan; +Cc: fstests, Jeff Layton, J. Bruce Fields

On Sun, Nov 12, 2017 at 11:09 AM, Eryu Guan <guaneryu@gmail.com> wrote:
> Hi all,
>
> The master branch of the xfstests repository at:
>
>         git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git
>
> have just been updated. This update contains a new open_by_handle test from
> Amir and the remaining bits from Darrick to prepare for v4.15 merge window.
> Other commits are random bug fixes.
>
> New failures I've noticed in this update:
> - generic/467 fails on NFSv3 and NFSv4.0 (passes on NFSv4.[12] though)

Can you please share the failure errors on NFSv3.

Test is also failing on tmpfs, which was acknowledged by nfsd maintainers
as a tmpfs bug or at least very undesired behavior for exported tmpfs.

Thanks,
Amir.

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

* Re: [ANNOUNCE] fstests: master branch updated to 1e24e5173efa
  2017-11-12  9:50 ` Amir Goldstein
@ 2017-11-13  4:12   ` Eryu Guan
  0 siblings, 0 replies; 3+ messages in thread
From: Eryu Guan @ 2017-11-13  4:12 UTC (permalink / raw)
  To: Amir Goldstein; +Cc: Eryu Guan, fstests, Jeff Layton, J. Bruce Fields

On Sun, Nov 12, 2017 at 11:50:55AM +0200, Amir Goldstein wrote:
> On Sun, Nov 12, 2017 at 11:09 AM, Eryu Guan <guaneryu@gmail.com> wrote:
> > Hi all,
> >
> > The master branch of the xfstests repository at:
> >
> >         git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git
> >
> > have just been updated. This update contains a new open_by_handle test from
> > Amir and the remaining bits from Darrick to prepare for v4.15 merge window.
> > Other commits are random bug fixes.
> >
> > New failures I've noticed in this update:
> > - generic/467 fails on NFSv3 and NFSv4.0 (passes on NFSv4.[12] though)
> 
> Can you please share the failure errors on NFSv3.

Sure.

NFSv3:
 test_file_handles TEST_DIR/467-dir -rp
+open_by_handle(/mnt/testarea/test) returned 116 incorrectly on a linked dir!
 ...
 test_file_handles TEST_DIR/467-dir.renamed -rp
+open_by_handle(/mnt/testarea/test) returned 116 incorrectly on a linked dir!
 test_file_handles TEST_DIR/467-dir.new -rp
+open_by_handle(/mnt/testarea/test) returned 116 incorrectly on a linked dir!

NFSv4.0:
 test_file_handles TEST_DIR/467-dir -rp
+open_by_handle(/mnt/testarea/test/467-dir/file000000) returned 116 incorrectly on a linked file!
...
 test_file_handles TEST_DIR/467-dir -dkr
 test_file_handles TEST_DIR/467-dir -lr
+open_by_handle(/mnt/testarea/test/467-dir/file000000) returned 116 incorrectly on a linked file!
...
 test_file_handles TEST_DIR/467-dir -ur
+open_by_handle(/mnt/testarea/test/467-dir/file000000) returned 116 incorrectly on a linked file!
...
 test_file_handles TEST_DIR/467-dir -mr
+open_by_handle(/mnt/testarea/test/467-dir/file000000) returned 116 incorrectly on a linked file!
...
 test_file_handles TEST_DIR/467-dir.renamed -rp
+open_by_handle(/mnt/testarea/test/467-dir.renamed/file000000) returned 116 incorrectly on a linked file!
...
 test_file_handles TEST_DIR/467-dir.new -rp
+open_by_handle(/mnt/testarea/test/467-dir.new/file000000) returned 116 incorrectly on a linked file!

Thanks,
Eryu

> 
> Test is also failing on tmpfs, which was acknowledged by nfsd maintainers
> as a tmpfs bug or at least very undesired behavior for exported tmpfs.
> 
> Thanks,
> Amir.
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-11-13  4:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-12  9:09 [ANNOUNCE] fstests: master branch updated to 1e24e5173efa Eryu Guan
2017-11-12  9:50 ` Amir Goldstein
2017-11-13  4:12   ` 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.