From: Vivek Goyal <vgoyal@redhat.com>
To: Amir Goldstein <amir73il@gmail.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>,
Al Viro <viro@zeniv.linux.org.uk>,
linux-unionfs@vger.kernel.org,
linux-fsdevel <linux-fsdevel@vger.kernel.org>
Subject: Re: [PATCH v2 00/11] overlayfs constant inode numbers
Date: Tue, 25 Apr 2017 09:29:08 -0400 [thread overview]
Message-ID: <20170425132908.GD11500@redhat.com> (raw)
In-Reply-To: <CAOQ4uxgrnTp_qi6HL+hrQF=xP6zrnOtDyq312UHQPSYp9-3x6w@mail.gmail.com>
On Tue, Apr 25, 2017 at 04:23:28PM +0300, Amir Goldstein wrote:
> On Tue, Apr 25, 2017 at 3:52 PM, Vivek Goyal <vgoyal@redhat.com> wrote:
> > On Tue, Apr 25, 2017 at 03:41:56PM +0300, Amir Goldstein wrote:
> >> On Tue, Apr 25, 2017 at 3:16 PM, Vivek Goyal <vgoyal@redhat.com> wrote:
> >> > On Mon, Apr 24, 2017 at 12:14:05PM +0300, Amir Goldstein wrote:
> >> >> Miklos,
> >> >>
> >> >> Following your comments on the 'stable inodes' series from last week,
> >> >> this series fixes constant inode numbers for stat(2) with any layer
> >> >> configuration.
> >> >>
> >> >> For the case of all *lower* layers on same fs that supports NFS export,
> >> >> redirect by file handle will be used to optimize the lookup of the copy
> >> >> up origin of non-dir inode.
> >> >
> >> > I was trying to run unionmount-testsuite (original from dhowells) and I
> >> > disabled layer check. Looks like empty directory rename test fails.
> >> >
> >> > ***
> >> > *** ./run --ov --ts=0 rename-empty-dir
> >> > ***
> >> > TEST rename-empty-dir.py:10: Rename empty dir and rename back
> >> > ./run --rename /mnt/a/empty100 /mnt/a/no_dir100
> >> > /mnt/a/empty100: Unexpected error: Invalid cross-device link
> >> >
> >>
> >> Strange... I can't find code in recent times when this used to work
> >> It certainly doesn't look like it should work with kernel v4.10
> >> and redirect_dir=off.
> >> I couldn't the point of regression by looking at the change log.
> >> You'd need to bisect to find the regression patch.
> >>
> >> Are you not compiling kernel with redirect_dir?
> >> CONFIG_OVERLAY_FS_REDIRECT_DIR=y
> >
> > I noticed that I am running with REDIRECT_DIR=n.
> >
> > I also re-ran the tests without your patches and test is still broken. So
> > it is not due to your current patch series.
> >
> > It has been long time since I ran these tests. I suspect that we might
> > have changed this behavior during redirect directory patches.
> >
> > So question is, is this a regression or expected behavior. That is with
> > REDIRECT_DIR=n, renames of empty directory will be denied too.
> >
>
> It must be a regression, although I can't think why anyone would care.
> If one really cares about renaming lower empty directories, why not enable
> REDIRECT_DIR?
I will enable it now. I just had an old config and ran into this.
But this does raise the question unionmount-testsuite need to be
maintained somewhere so that it acts as a baseline to figure out if
new patches broke some existing tests.
I can go by the tree you are maintaining but currently that's broken too
with REDIRECT_DIR=n.
Vivek
>
> >>
> >> I guess not. If you do compile or mount with -o redirect_dir=on,
> >> you will need some minimal patches to unionmount-testsuite
> >> that set the expectations correctly for directory rename.
> >>
> >> The last stable branch I have from testing v4.10 is this:
> >> https://github.com/amir73il/unionmount-testsuite/commits/ovl_rename_dir
> >>
> >> But you may as well take my most recent branch for testing const ino:
> >> https://github.com/amir73il/unionmount-testsuite/commits/overlayfs-devel
> >
> > I guess I should start using your copy of unionmount-testsuite.
> >
> > Vivek
next prev parent reply other threads:[~2017-04-25 13:29 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-24 9:14 [PATCH v2 00/11] overlayfs constant inode numbers Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 01/11] ovl: store path type in dentry Amir Goldstein
2017-04-24 12:59 ` Vivek Goyal
2017-04-24 13:10 ` Amir Goldstein
2017-04-24 13:36 ` Vivek Goyal
2017-04-24 13:41 ` Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 02/11] ovl: cram opaque boolean into type flags Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 03/11] ovl: check if all layers are on the same fs Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 04/11] ovl: store file handle of lower inode on copy up Amir Goldstein
2017-04-24 13:32 ` kbuild test robot
2017-04-24 13:57 ` Amir Goldstein
2017-04-25 14:53 ` Miklos Szeredi
2017-04-26 5:47 ` Amir Goldstein
2017-04-26 9:21 ` Miklos Szeredi
2017-04-26 9:27 ` Amir Goldstein
2017-04-26 9:35 ` Miklos Szeredi
2017-04-26 9:39 ` Miklos Szeredi
2017-04-26 9:53 ` Amir Goldstein
2017-04-26 9:57 ` Miklos Szeredi
2017-04-24 9:14 ` [PATCH v2 05/11] ovl: lookup redirect by file handle Amir Goldstein
2017-04-25 8:10 ` Amir Goldstein
2017-04-25 15:13 ` Miklos Szeredi
2017-04-25 17:41 ` Amir Goldstein
2017-04-25 19:11 ` Amir Goldstein
2017-04-26 9:06 ` Miklos Szeredi
2017-04-26 9:40 ` Amir Goldstein
2017-04-26 9:55 ` Miklos Szeredi
2017-04-26 10:17 ` Amir Goldstein
2017-04-26 12:15 ` Miklos Szeredi
2017-04-26 14:51 ` Amir Goldstein
2017-04-27 6:27 ` Amir Goldstein
2017-04-27 7:48 ` Miklos Szeredi
2017-04-27 9:22 ` Amir Goldstein
2017-04-27 9:26 ` Miklos Szeredi
[not found] ` <CAOQ4uxiweaqzR3eT-StgtDFAHBuYhGRvAJE6v=XpH33MevpmoA@mail.gmail.com>
[not found] ` <CAJfpegtTJmcLVrLOeQbhu4Q6sM0Mi_FRgr+vStF0k95QsWm5uQ@mail.gmail.com>
2017-04-27 13:53 ` Amir Goldstein
2017-04-27 14:46 ` Miklos Szeredi
2017-04-27 16:08 ` Amir Goldstein
2017-04-28 7:25 ` Amir Goldstein
2017-04-28 7:55 ` Miklos Szeredi
2017-04-28 8:15 ` Amir Goldstein
2017-04-28 9:37 ` Miklos Szeredi
2017-04-28 9:57 ` Amir Goldstein
2017-04-28 10:05 ` Miklos Szeredi
2017-04-28 10:45 ` Amir Goldstein
2017-04-27 7:40 ` Miklos Szeredi
2017-04-24 9:14 ` [PATCH v2 06/11] ovl: lookup non-dir inode copy up origin Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 07/11] ovl: set the COPYUP type flag for non-dirs Amir Goldstein
2017-04-26 14:40 ` Miklos Szeredi
2017-04-26 14:53 ` Miklos Szeredi
2017-04-26 15:02 ` Amir Goldstein
2017-04-26 18:51 ` Amir Goldstein
2017-04-27 9:32 ` Miklos Szeredi
2017-04-26 14:57 ` Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 08/11] ovl: redirect non-dir by path on rename Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 09/11] ovl: constant st_ino/st_dev across copy up Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 10/11] ovl: persistent and constant inode number for directories Amir Goldstein
2017-04-24 9:14 ` [PATCH v2 11/11] ovl: fix du --one-file-system on overlay mount Amir Goldstein
2017-04-24 18:40 ` [PATCH v2 12/12] ovl: persistent inode numbers for hardlinks Amir Goldstein
2017-04-24 18:51 ` [PATCH v2 00/11] overlayfs constant inode numbers Amir Goldstein
2017-04-25 11:52 ` Vivek Goyal
2017-04-25 12:05 ` Amir Goldstein
2017-04-25 12:16 ` Vivek Goyal
2017-04-25 12:41 ` Amir Goldstein
2017-04-25 12:52 ` Vivek Goyal
2017-04-25 13:23 ` Amir Goldstein
2017-04-25 13:29 ` Vivek Goyal [this message]
2017-04-25 13:49 ` Amir Goldstein
2017-04-25 13:53 ` Vivek Goyal
2017-04-25 14:20 ` Amir Goldstein
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=20170425132908.GD11500@redhat.com \
--to=vgoyal@redhat.com \
--cc=amir73il@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-unionfs@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=viro@zeniv.linux.org.uk \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox