Lines Matching defs:xfs_log_item
30 struct xfs_log_item { struct
31 struct list_head li_ail; /* AIL pointers */
32 struct list_head li_trans; /* transaction list */
33 xfs_lsn_t li_lsn; /* last on-disk lsn */
34 struct xfs_mount *li_mountp; /* ptr to fs mount */
35 struct xfs_ail *li_ailp; /* ptr to AIL */
36 uint li_type; /* item type */
37 unsigned long li_flags; /* misc flags */
38 struct xfs_buf *li_buf; /* real buffer pointer */
39 struct list_head li_bio_list; /* buffer item list */
40 const struct xfs_item_ops *li_ops; /* function list */
43 struct list_head li_cil; /* CIL pointers */
67 void (*iop_size)(struct xfs_log_item *, int *, int *); argument