Skip to content

Commit 8e15e12

Browse files
author
Al Viro
committed
io_statx_prep(): use getname_uflags()
the only thing in flags getname_flags() ever cares about is LOOKUP_EMPTY; anything else is none of its damn business. Reviewed-by: Jens Axboe <[email protected]> Reviewed-by: Christian Brauner <[email protected]> Signed-off-by: Al Viro <[email protected]>
1 parent e896474 commit 8e15e12

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

io_uring/statx.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3636
sx->buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3737
sx->flags = READ_ONCE(sqe->statx_flags);
3838

39-
sx->filename = getname_flags(path,
40-
getname_statx_lookup_flags(sx->flags));
39+
sx->filename = getname_uflags(path, sx->flags);
4140

4241
if (IS_ERR(sx->filename)) {
4342
int ret = PTR_ERR(sx->filename);

0 commit comments

Comments
 (0)