diff options
| author | 2022-03-21 16:29:24 -0700 | |
|---|---|---|
| committer | 2022-03-21 16:29:24 -0700 | |
| commit | b080cee72ef355669cbc52ff55dc513d37433600 (patch) | |
| tree | cef571297dc9cd08042a8f5ecd2484ae837cd389 /fs/internal.h | |
| parent | Merge tag 'for-5.18/io_uring-2022-03-18' of git://git.kernel.dk/linux-block (diff) | |
| parent | io-uring: Make statx API stable (diff) | |
| download | linux-dev-b080cee72ef355669cbc52ff55dc513d37433600.tar.xz linux-dev-b080cee72ef355669cbc52ff55dc513d37433600.zip | |
Merge tag 'for-5.18/io_uring-statx-2022-03-18' of git://git.kernel.dk/linux-block
Pull io_uring statx fixes from Jens Axboe:
"On top of the main io_uring branch, this is to ensure that the
filename component of statx is stable after submit.
That requires a few VFS related changes"
* tag 'for-5.18/io_uring-statx-2022-03-18' of git://git.kernel.dk/linux-block:
io-uring: Make statx API stable
Diffstat (limited to 'fs/internal.h')
| -rw-r--r-- | fs/internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/internal.h b/fs/internal.h index 8590c973c2f4..56c0477f4215 100644 --- a/fs/internal.h +++ b/fs/internal.h @@ -184,7 +184,9 @@ int sb_init_dio_done_wq(struct super_block *sb); /* * fs/stat.c: */ -int do_statx(int dfd, const char __user *filename, unsigned flags, + +int getname_statx_lookup_flags(int flags); +int do_statx(int dfd, struct filename *filename, unsigned int flags, unsigned int mask, struct statx __user *buffer); /* |
