xfs_iomap.h 1.1 KB
Newer Older
D
Dave Chinner 已提交
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2
/*
3 4
 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
5 6 7 8
 */
#ifndef __XFS_IOMAP_H__
#define __XFS_IOMAP_H__

9 10
#include <linux/iomap.h>

L
Linus Torvalds 已提交
11 12 13
struct xfs_inode;
struct xfs_bmbt_irec;

14
int xfs_iomap_write_direct(struct xfs_inode *, xfs_off_t, size_t,
C
Christoph Hellwig 已提交
15
			struct xfs_bmbt_irec *, int);
16
int xfs_iomap_write_unwritten(struct xfs_inode *, xfs_off_t, xfs_off_t, bool);
L
Linus Torvalds 已提交
17

18
int xfs_bmbt_to_iomap(struct xfs_inode *, struct iomap *,
19
		struct xfs_bmbt_irec *, u16);
20

21 22 23 24 25 26 27 28 29
static inline xfs_filblks_t
xfs_aligned_fsb_count(
	xfs_fileoff_t		offset_fsb,
	xfs_filblks_t		count_fsb,
	xfs_extlen_t		extsz)
{
	if (extsz) {
		xfs_extlen_t	align;

30
		div_u64_rem(offset_fsb, extsz, &align);
31 32
		if (align)
			count_fsb += align;
33
		div_u64_rem(count_fsb, extsz, &align);
34 35 36 37 38 39 40
		if (align)
			count_fsb += extsz - align;
	}

	return count_fsb;
}

41 42
extern const struct iomap_ops xfs_buffered_write_iomap_ops;
extern const struct iomap_ops xfs_direct_write_iomap_ops;
43
extern const struct iomap_ops xfs_read_iomap_ops;
44
extern const struct iomap_ops xfs_seek_iomap_ops;
45
extern const struct iomap_ops xfs_xattr_iomap_ops;
46

L
Linus Torvalds 已提交
47
#endif /* __XFS_IOMAP_H__*/