aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_iomap.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2010-04-28 08:28:57 -0400
committerAlex Elder <aelder@sgi.com>2010-05-19 10:58:17 -0400
commit34a52c6c064fb9f1fd1310407ce076a4bb049734 (patch)
tree2b05a8d21f644ab733f7e242971bd0314c46b355 /fs/xfs/xfs_iomap.h
parent207d041602cead1c1a16288f6225aea9da1f5bc4 (diff)
xfs: move I/O type flags into xfs_aops.c
The IOMAP_ flags are now only used inside xfs_aops.c for extent probing and I/O completion tracking, so more them here, and rename them to IO_* as there's no mapping involved at all. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_iomap.h')
-rw-r--r--fs/xfs/xfs_iomap.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/xfs/xfs_iomap.h b/fs/xfs/xfs_iomap.h
index ba49a4fd1b3f..41e32d20a405 100644
--- a/fs/xfs/xfs_iomap.h
+++ b/fs/xfs/xfs_iomap.h
@@ -18,14 +18,6 @@
18#ifndef __XFS_IOMAP_H__ 18#ifndef __XFS_IOMAP_H__
19#define __XFS_IOMAP_H__ 19#define __XFS_IOMAP_H__
20 20
21typedef enum { /* iomap_flags values */
22 IOMAP_READ = 0, /* mapping for a read */
23 IOMAP_DELAY = 0x04, /* mapping covers delalloc region */
24 IOMAP_UNWRITTEN = 0x20, /* mapping covers allocated */
25 /* but uninitialized file data */
26 IOMAP_NEW = 0x40 /* just allocate */
27} iomap_flags_t;
28
29typedef enum { 21typedef enum {
30 /* base extent manipulation calls */ 22 /* base extent manipulation calls */
31 BMAPI_READ = (1 << 0), /* read extents */ 23 BMAPI_READ = (1 << 0), /* read extents */