diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-04-28 16:28:57 +0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-05-19 18:58:17 +0400 |
commit | 34a52c6c064fb9f1fd1310407ce076a4bb049734 (patch) | |
tree | 2b05a8d21f644ab733f7e242971bd0314c46b355 /fs/xfs/xfs_iomap.h | |
parent | 207d041602cead1c1a16288f6225aea9da1f5bc4 (diff) | |
download | linux-34a52c6c064fb9f1fd1310407ce076a4bb049734.tar.xz |
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.h | 8 |
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 @@ #ifndef __XFS_IOMAP_H__ #define __XFS_IOMAP_H__ -typedef enum { /* iomap_flags values */ - IOMAP_READ = 0, /* mapping for a read */ - 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 */ |