mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 22:22:08 +02:00
xfs: move struct xfs_log_iovec to xfs_log_priv.h
This structure is now only used by the core logging and CIL code. Also remove the unused typedef. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Carlos Maiolino <cem@kernel.org>
This commit is contained in:
parent
8e76253443
commit
0274105914
|
|
@ -184,13 +184,6 @@ struct xlog_rec_header {
|
|||
#define XLOG_REC_SIZE_OTHER offsetofend(struct xlog_rec_header, h_size)
|
||||
#endif /* __i386__ */
|
||||
|
||||
/* not an on-disk structure, but needed by log recovery in userspace */
|
||||
struct xfs_log_iovec {
|
||||
void *i_addr; /* beginning address of region */
|
||||
int i_len; /* length in bytes of region */
|
||||
uint i_type; /* type of region */
|
||||
};
|
||||
|
||||
/*
|
||||
* Transaction Header definitions.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -13,6 +13,12 @@ struct xlog;
|
|||
struct xlog_ticket;
|
||||
struct xfs_mount;
|
||||
|
||||
struct xfs_log_iovec {
|
||||
void *i_addr;/* beginning address of region */
|
||||
int i_len; /* length in bytes of region */
|
||||
uint i_type; /* type of region */
|
||||
};
|
||||
|
||||
/*
|
||||
* get client id from packed copy.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user