]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
ovl: mark xwhiteouts directory with overlay.opaque='x'
authorAmir Goldstein <amir73il@gmail.com>
Sat, 20 Jan 2024 10:18:39 +0000 (12:18 +0200)
committerAmir Goldstein <amir73il@gmail.com>
Tue, 23 Jan 2024 10:39:48 +0000 (12:39 +0200)
commit420332b94119cdc7db4477cc88484691cb92ae71
tree4a879c9d079474026bf8de92294a0ed7fb6c290f
parent6613476e225e090cc9aad49be7fa504e290dd33d
ovl: mark xwhiteouts directory with overlay.opaque='x'

An opaque directory cannot have xwhiteouts, so instead of marking an
xwhiteouts directory with a new xattr, overload overlay.opaque xattr
for marking both opaque dir ('y') and xwhiteouts dir ('x').

This is more efficient as the overlay.opaque xattr is checked during
lookup of directory anyway.

This also prevents unnecessary checking the xattr when reading a
directory without xwhiteouts, i.e. most of the time.

Note that the xwhiteouts marker is not checked on the upper layer and
on the last layer in lowerstack, where xwhiteouts are not expected.

Fixes: bc8df7a3dc03 ("ovl: Add an alternative type of whiteout")
Cc: <stable@vger.kernel.org> # v6.7
Reviewed-by: Alexander Larsson <alexl@redhat.com>
Tested-by: Alexander Larsson <alexl@redhat.com>
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Documentation/filesystems/overlayfs.rst
fs/overlayfs/namei.c
fs/overlayfs/overlayfs.h
fs/overlayfs/ovl_entry.h
fs/overlayfs/readdir.c
fs/overlayfs/super.c
fs/overlayfs/util.c