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>
Cette révision appartient à :
Darrick J. Wong
2020-04-30 10:45:41 -07:00
Parent c199507993
révision 35f4521fd3
2 fichiers modifiés avec 16 ajouts et 14 suppressions

Voir le fichier

@@ -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;