xfs_iomap.h 1.3 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 15
int xfs_iomap_write_direct(struct xfs_inode *ip, xfs_fileoff_t offset_fsb,
		xfs_fileoff_t count_fsb, struct xfs_bmbt_irec *imap);
16
int xfs_iomap_write_unwritten(struct xfs_inode *, xfs_off_t, xfs_off_t, bool);
17 18
xfs_fileoff_t xfs_iomap_eof_align_last_fsb(struct xfs_inode *ip,
		xfs_fileoff_t end_fsb);
L
Linus Torvalds 已提交
19

20
int xfs_bmbt_to_iomap(struct xfs_inode *, struct iomap *,
21
		struct xfs_bmbt_irec *, u16);
22

23 24 25 26 27 28 29 30 31
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;

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

	return count_fsb;
}

43 44
extern const struct iomap_ops xfs_buffered_write_iomap_ops;
extern const struct iomap_ops xfs_direct_write_iomap_ops;
45
extern const struct iomap_ops xfs_read_iomap_ops;
46
extern const struct iomap_ops xfs_seek_iomap_ops;
47
extern const struct iomap_ops xfs_xattr_iomap_ops;
48

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