diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-22 09:23:18 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-22 09:23:18 -0700 |
commit | 0e22bedd758643bc2cc161d54aa181e329da0ab3 (patch) | |
tree | 73fd34e6567f36c423a1ff37bf34bff1b082ade8 /fs/overlayfs/file.c | |
parent | 4f2d34b65b40937b43c38ba34ece5aa3bc210e0d (diff) | |
parent | e9229c18dae3b3c2556cea8413edd1f76c78d767 (diff) |
Merge tag 'ovl-update-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs
Pull overlayfs updates from Miklos Szeredi:
- Add tmpfile support
- Clean up include
* tag 'ovl-update-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs:
ovl: remove duplicate included header
ovl: remove upper umask handling from ovl_create_upper()
ovl: implement tmpfile
Diffstat (limited to 'fs/overlayfs/file.c')
-rw-r--r-- | fs/overlayfs/file.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/overlayfs/file.c b/fs/overlayfs/file.c index 05536964d37f..1a411cae57ed 100644 --- a/fs/overlayfs/file.c +++ b/fs/overlayfs/file.c @@ -24,9 +24,6 @@ static char ovl_whatisit(struct inode *inode, struct inode *realinode) return 'm'; } -/* No atime modification on underlying */ -#define OVL_OPEN_FLAGS (O_NOATIME) - static struct file *ovl_open_realfile(const struct file *file, const struct path *realpath) { |