1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (C) 2018-2023 Oracle. All Rights Reserved.
6 #ifndef __XFS_SCRUB_XFILE_H__
7 #define __XFS_SCRUB_XFILE_H__
13 int xfile_create(const char *description, loff_t isize, struct xfile **xfilep);
14 void xfile_destroy(struct xfile *xf);
16 int xfile_load(struct xfile *xf, void *buf, size_t count, loff_t pos);
17 int xfile_store(struct xfile *xf, const void *buf, size_t count,
20 void xfile_discard(struct xfile *xf, loff_t pos, u64 count);
21 loff_t xfile_seek_data(struct xfile *xf, loff_t pos);
23 #define XFILE_MAX_FOLIO_SIZE (PAGE_SIZE << MAX_PAGECACHE_ORDER)
25 #define XFILE_ALLOC (1 << 0) /* allocate folio if not present */
26 struct folio *xfile_get_folio(struct xfile *xf, loff_t offset, size_t len,
28 void xfile_put_folio(struct xfile *xf, struct folio *folio);
30 static inline unsigned long long xfile_bytes(struct xfile *xf)
32 return file_inode(xf->file)->i_blocks << SECTOR_SHIFT;
35 #endif /* __XFS_SCRUB_XFILE_H__ */