1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Copyright (c) 2025 LG Electronics Co., Ltd. 4 */ 5 6 #ifndef _LINUX_NTFS_IOMAP_H 7 #define _LINUX_NTFS_IOMAP_H 8 9 #include <linux/pagemap.h> 10 #include <linux/iomap.h> 11 12 #include "volume.h" 13 #include "inode.h" 14 15 extern const struct iomap_ops ntfs_write_iomap_ops; 16 extern const struct iomap_ops ntfs_read_iomap_ops; 17 extern const struct iomap_ops ntfs_seek_iomap_ops; 18 extern const struct iomap_ops ntfs_page_mkwrite_iomap_ops; 19 extern const struct iomap_ops ntfs_dio_iomap_ops; 20 extern const struct iomap_writeback_ops ntfs_writeback_ops; 21 extern const struct iomap_write_ops ntfs_iomap_folio_ops; 22 extern int ntfs_dio_zero_range(struct inode *inode, loff_t offset, loff_t length); 23 #endif /* _LINUX_NTFS_IOMAP_H */ 24