diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2020-04-30 10:45:41 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-05-08 08:49:58 -0700 |
commit | 35f4521fd3a001fb290a1780f8beeffb06d99a04 (patch) | |
tree | 2b838f1ded607c201b94ccd0427ea552c345b64e /fs/xfs/libxfs/xfs_log_recover.h | |
parent | c199507993ede3f63d0deae7e2cbc2f5462c6452 (diff) | |
download | linux-35f4521fd3a001fb290a1780f8beeffb06d99a04.tar.gz linux-35f4521fd3a001fb290a1780f8beeffb06d99a04.tar.bz2 linux-35f4521fd3a001fb290a1780f8beeffb06d99a04.zip |
xfs: convert xfs_log_recover_item_t to struct xfs_log_recover_item
Remove the old typedefs.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/libxfs/xfs_log_recover.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_log_recover.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/libxfs/xfs_log_recover.h b/fs/xfs/libxfs/xfs_log_recover.h index 3bf671637a91..148e0cb5d379 100644 --- a/fs/xfs/libxfs/xfs_log_recover.h +++ b/fs/xfs/libxfs/xfs_log_recover.h @@ -22,13 +22,13 @@ /* * item headers are in ri_buf[0]. Additional buffers follow. */ -typedef struct xlog_recover_item { +struct xlog_recover_item { struct list_head ri_list; int ri_type; int ri_cnt; /* count of regions found */ int ri_total; /* total regions */ xfs_log_iovec_t *ri_buf; /* ptr to regions buffer */ -} xlog_recover_item_t; +}; struct xlog_recover { struct hlist_node r_list; |