diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-12-01 22:06:22 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-12-16 16:05:22 -0600 |
commit | d5689eaa0ac5588cf459ee32f86d5700dd7d6403 (patch) | |
tree | 2d637bc35de7f95d10c5c1fc17f57bc7adfb1e41 /fs/xfs/xfs_buf_item.h | |
parent | e2714bf8d5c8e131a6df6b0ea2269433e9a03a9b (diff) | |
download | linux-stable-d5689eaa0ac5588cf459ee32f86d5700dd7d6403.tar.gz linux-stable-d5689eaa0ac5588cf459ee32f86d5700dd7d6403.tar.bz2 linux-stable-d5689eaa0ac5588cf459ee32f86d5700dd7d6403.zip |
xfs: use struct list_head for the buf cancel table
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_buf_item.h')
-rw-r--r-- | fs/xfs/xfs_buf_item.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/fs/xfs/xfs_buf_item.h b/fs/xfs/xfs_buf_item.h index 0e2ed43f16c7..b6ecd2061e7c 100644 --- a/fs/xfs/xfs_buf_item.h +++ b/fs/xfs/xfs_buf_item.h @@ -105,17 +105,6 @@ typedef struct xfs_buf_log_item { xfs_buf_log_format_t bli_format; /* in-log header */ } xfs_buf_log_item_t; -/* - * This structure is used during recovery to record the buf log - * items which have been canceled and should not be replayed. - */ -typedef struct xfs_buf_cancel { - xfs_daddr_t bc_blkno; - uint bc_len; - int bc_refcount; - struct xfs_buf_cancel *bc_next; -} xfs_buf_cancel_t; - void xfs_buf_item_init(struct xfs_buf *, struct xfs_mount *); void xfs_buf_item_relse(struct xfs_buf *); void xfs_buf_item_log(xfs_buf_log_item_t *, uint, uint); |