Re: [f2fs-dev] [PATCH v5 04/10] fs: Expose name under lookup to d_revalidate hooks

2023-08-17 Thread kernel test robot
Hi Gabriel, kernel test robot noticed the following build warnings: [auto build test WARNING on tytso-ext4/dev] [also build test WARNING on linus/master] [cannot apply to tyhicks-ecryptfs/next ericvh-v9fs/for-next viro-vfs/for-next] [If your patch is applied to the wrong git tree, kindly drop us

Re: [f2fs-dev] [PATCH v5 04/10] fs: Expose name under lookup to d_revalidate hooks

2023-08-17 Thread kernel test robot
Hi Gabriel, kernel test robot noticed the following build warnings: [auto build test WARNING on tytso-ext4/dev] [also build test WARNING on linus/master] [cannot apply to tyhicks-ecryptfs/next ericvh-v9fs/for-next] [If your patch is applied to the wrong git tree, kindly drop us a note. And when s

Re: [f2fs-dev] [PATCH v5 04/10] fs: Expose name under lookup to d_revalidate hooks

2023-08-11 Thread Eric Biggers
On Fri, Aug 11, 2023 at 08:41:40PM -0400, Gabriel Krisman Bertazi wrote: > diff --git a/Documentation/filesystems/vfs.rst > b/Documentation/filesystems/vfs.rst > index cb2a97e49872..ddd542c2a722 100644 > --- a/Documentation/filesystems/vfs.rst > +++ b/Documentation/filesystems/vfs.rst > @@ -1251,7

[f2fs-dev] [PATCH v5 04/10] fs: Expose name under lookup to d_revalidate hooks

2023-08-11 Thread Gabriel Krisman Bertazi
From: Gabriel Krisman Bertazi Negative dentries support on case-insensitive ext4/f2fs will require access to the name under lookup to ensure it matches the dentry. This adds the information on d_revalidate and updates its implementation. This was done through a Coccinelle hook and tested by bui