diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2024-04-26 18:20:15 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2024-11-06 12:59:21 -0500 |
commit | 537c76629d7855ce11400eaad0137a062bfc15f6 (patch) | |
tree | 3859b5fc84bb3f8c5915c2a177d5ceea7eabe21a /io_uring | |
parent | a71874379ec8c6e788a61d71b3ad014a8d9a5c08 (diff) |
fs: rename struct xattr_ctx to kernel_xattr_ctx
Rename the struct xattr_ctx to increase distinction with the about to be
added user API struct xattr_args.
No functional change.
Suggested-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Link: https://lore.kernel.org/r/20240426162042.191916-2-cgoettsche@seltendoof.de
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'io_uring')
-rw-r--r-- | io_uring/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/xattr.c b/io_uring/xattr.c index 967c5d8da061..f440121c3984 100644 --- a/io_uring/xattr.c +++ b/io_uring/xattr.c @@ -18,7 +18,7 @@ struct io_xattr { struct file *file; - struct xattr_ctx ctx; + struct kernel_xattr_ctx ctx; struct filename *filename; }; |