xfs_iomap.h 2.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
4
 *
5 6
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
L
Linus Torvalds 已提交
7 8
 * published by the Free Software Foundation.
 *
9 10 11 12
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
L
Linus Torvalds 已提交
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
17 18 19 20 21
 */
#ifndef __XFS_IOMAP_H__
#define __XFS_IOMAP_H__

typedef enum {				/* iomap_flags values */
22
	IOMAP_READ =		0,	/* mapping for a read */
L
Linus Torvalds 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35
	IOMAP_DELAY =		0x04,	/* mapping covers delalloc region  */
	IOMAP_UNWRITTEN =	0x20,	/* mapping covers allocated */
					/* but uninitialized file data  */
	IOMAP_NEW =		0x40	/* just allocate */
} iomap_flags_t;

typedef enum {
	/* base extent manipulation calls */
	BMAPI_READ = (1 << 0),		/* read extents */
	BMAPI_WRITE = (1 << 1),		/* create extents */
	BMAPI_ALLOCATE = (1 << 2),	/* delayed allocate to real extents */
	/* modifiers */
	BMAPI_IGNSTATE = (1 << 4),	/* ignore unwritten state on read */
36
	BMAPI_DIRECT = (1 << 5),	/* direct instead of buffered write */
L
Linus Torvalds 已提交
37
	BMAPI_MMAP = (1 << 6),		/* allocate for mmap write */
D
Dave Chinner 已提交
38
	BMAPI_TRYLOCK = (1 << 7),	/* non-blocking request */
L
Linus Torvalds 已提交
39 40
} bmapi_flags_t;

C
Christoph Hellwig 已提交
41 42 43 44 45 46 47 48
#define BMAPI_FLAGS \
	{ BMAPI_READ,		"READ" }, \
	{ BMAPI_WRITE,		"WRITE" }, \
	{ BMAPI_ALLOCATE,	"ALLOCATE" }, \
	{ BMAPI_IGNSTATE,	"IGNSTATE" }, \
	{ BMAPI_DIRECT,		"DIRECT" }, \
	{ BMAPI_MMAP,		"MMAP" }, \
	{ BMAPI_TRYLOCK,	"TRYLOCK" }
L
Linus Torvalds 已提交
49 50 51 52

struct xfs_inode;
struct xfs_bmbt_irec;

53
extern int xfs_iomap(struct xfs_inode *, xfs_off_t, ssize_t, int,
C
Christoph Hellwig 已提交
54
		     struct xfs_bmbt_irec *, int *, int *);
55
extern int xfs_iomap_write_direct(struct xfs_inode *, xfs_off_t, size_t,
L
Linus Torvalds 已提交
56
				  int, struct xfs_bmbt_irec *, int *, int);
57
extern int xfs_iomap_write_delay(struct xfs_inode *, xfs_off_t, size_t, int,
L
Linus Torvalds 已提交
58
				 struct xfs_bmbt_irec *, int *);
59
extern int xfs_iomap_write_allocate(struct xfs_inode *, xfs_off_t, size_t,
L
Linus Torvalds 已提交
60
				struct xfs_bmbt_irec *, int *);
61
extern int xfs_iomap_write_unwritten(struct xfs_inode *, xfs_off_t, size_t);
L
Linus Torvalds 已提交
62 63

#endif /* __XFS_IOMAP_H__*/