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/internal.h | |
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/internal.h')
-rw-r--r-- | fs/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/internal.h b/fs/internal.h index 7ca738904e34..ab2225136f60 100644 --- a/fs/internal.h +++ b/fs/internal.h @@ -62,6 +62,9 @@ int do_mkdirat(int dfd, struct filename *name, umode_t mode); int do_symlinkat(struct filename *from, int newdfd, struct filename *to); int do_linkat(int olddfd, struct filename *old, int newdfd, struct filename *new, int flags); +int vfs_tmpfile(struct mnt_idmap *idmap, + const struct path *parentpath, + struct file *file, umode_t mode); /* * namespace.c |