aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode.h
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2005-11-01 23:05:34 -0500
committerNathan Scott <nathans@sgi.com>2005-11-01 23:05:34 -0500
commit9dac13e7ffddf40c7bf1bf8bf4f735af6c3d31ec (patch)
treed8ed7d7198c33df5fda612baf18600cb62988f77 /fs/xfs/xfs_inode.h
parent1149d96ae825a1e1e9d66774175372c003f29caf (diff)
[XFS] Remove unused type, xfs_gap_t.
SGI-PV: 907752 SGI-Modid: xfs-linux:xfs-kern:23932a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r--fs/xfs/xfs_inode.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h
index d9e9cbaee28e..124d30e6143b 100644
--- a/fs/xfs/xfs_inode.h
+++ b/fs/xfs/xfs_inode.h
@@ -99,24 +99,6 @@ extern void xfs_ilock_trace(struct xfs_inode *, int, unsigned int, inst_t *);
99#define xfs_ilock_trace(i,n,f,ra) 99#define xfs_ilock_trace(i,n,f,ra)
100#endif 100#endif
101 101
102/*
103 * This structure is used to communicate which extents of a file
104 * were holes when a write started from xfs_write_file() to
105 * xfs_strat_read(). This is necessary so that we can know which
106 * blocks need to be zeroed when they are read in in xfs_strat_read()
107 * if they weren\'t allocated when the buffer given to xfs_strat_read()
108 * was mapped.
109 *
110 * We keep a list of these attached to the inode. The list is
111 * protected by the inode lock and the fact that the io lock is
112 * held exclusively by writers.
113 */
114typedef struct xfs_gap {
115 struct xfs_gap *xg_next;
116 xfs_fileoff_t xg_offset_fsb;
117 xfs_extlen_t xg_count_fsb;
118} xfs_gap_t;
119
120typedef struct dm_attrs_s { 102typedef struct dm_attrs_s {
121 __uint32_t da_dmevmask; /* DMIG event mask */ 103 __uint32_t da_dmevmask; /* DMIG event mask */
122 __uint16_t da_dmstate; /* DMIG state info */ 104 __uint16_t da_dmstate; /* DMIG state info */