| 1 | // SPDX-License-Identifier: GPL-2.0 | 
|---|
| 2 |  | 
|---|
| 3 | void io_xattr_cleanup(struct io_kiocb *req); | 
|---|
| 4 |  | 
|---|
| 5 | int io_fsetxattr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); | 
|---|
| 6 | int io_fsetxattr(struct io_kiocb *req, unsigned int issue_flags); | 
|---|
| 7 |  | 
|---|
| 8 | int io_setxattr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); | 
|---|
| 9 | int io_setxattr(struct io_kiocb *req, unsigned int issue_flags); | 
|---|
| 10 |  | 
|---|
| 11 | int io_fgetxattr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); | 
|---|
| 12 | int io_fgetxattr(struct io_kiocb *req, unsigned int issue_flags); | 
|---|
| 13 |  | 
|---|
| 14 | int io_getxattr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); | 
|---|
| 15 | int io_getxattr(struct io_kiocb *req, unsigned int issue_flags); | 
|---|
| 16 |  | 
|---|