__io_setxattr(): constify path
Reviewed-by: Christian Brauner (Microsoft) <brauner@kernel.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
5b09c9fec0
commit
e81f574da0
|
@ -206,7 +206,7 @@ int io_fsetxattr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __io_setxattr(struct io_kiocb *req, unsigned int issue_flags,
|
static int __io_setxattr(struct io_kiocb *req, unsigned int issue_flags,
|
||||||
struct path *path)
|
const struct path *path)
|
||||||
{
|
{
|
||||||
struct io_xattr *ix = io_kiocb_to_cmd(req, struct io_xattr);
|
struct io_xattr *ix = io_kiocb_to_cmd(req, struct io_xattr);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
Loading…
Reference in New Issue