1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Copyright (c) 2026 Namjae Jeon <linkinjeon@kernel.org> 4 */ 5 6 #ifndef _LINUX_EXFAT_IOMAP_H 7 #define _LINUX_EXFAT_IOMAP_H 8 9 extern const struct iomap_dio_ops exfat_write_dio_ops; 10 extern const struct iomap_ops exfat_iomap_ops; 11 extern const struct iomap_ops exfat_write_iomap_ops; 12 extern const struct iomap_writeback_ops exfat_writeback_ops; 13 extern const struct iomap_read_ops exfat_iomap_bio_read_ops; 14 15 int exfat_iomap_swap_activate(struct swap_info_struct *sis, 16 struct file *file, sector_t *span); 17 18 #endif /* _LINUX_EXFAT_IOMAP_H */ 19