diff options
Diffstat (limited to 'fs/ceph/io.h')
| -rw-r--r-- | fs/ceph/io.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fs/ceph/io.h b/fs/ceph/io.h new file mode 100644 index 000000000000..79029825e8b8 --- /dev/null +++ b/fs/ceph/io.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _FS_CEPH_IO_H +#define _FS_CEPH_IO_H + +#include <linux/compiler_attributes.h> + +int __must_check ceph_start_io_read(struct inode *inode); +void ceph_end_io_read(struct inode *inode); +int __must_check ceph_start_io_write(struct inode *inode); +void ceph_end_io_write(struct inode *inode); +int __must_check ceph_start_io_direct(struct inode *inode); +void ceph_end_io_direct(struct inode *inode); + +#endif /* FS_CEPH_IO_H */ |
