Linux Audio

Check our new training course

Loading...
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
  4 * All Rights Reserved.
  5 */
  6#ifndef	__XFS_LOG_RECOVER_H__
  7#define __XFS_LOG_RECOVER_H__
  8
  9/*
 10 * Each log item type (XFS_LI_*) gets its own xlog_recover_item_ops to
 11 * define how recovery should work for that type of log item.
 12 */
 13struct xlog_recover_item;
 
 14
 15/* Sorting hat for log items as they're read in. */
 16enum xlog_recover_reorder {
 17	XLOG_REORDER_BUFFER_LIST,
 18	XLOG_REORDER_ITEM_LIST,
 19	XLOG_REORDER_INODE_BUFFER_LIST,
 20	XLOG_REORDER_CANCEL_LIST,
 21};
 22
 23struct xlog_recover_item_ops {
 24	uint16_t	item_type;	/* XFS_LI_* type code. */
 25
 26	/*
 27	 * Help sort recovered log items into the order required to replay them
 28	 * correctly.  Log item types that always use XLOG_REORDER_ITEM_LIST do
 29	 * not have to supply a function here.  See the comment preceding
 30	 * xlog_recover_reorder_trans for more details about what the return
 31	 * values mean.
 32	 */
 33	enum xlog_recover_reorder (*reorder)(struct xlog_recover_item *item);
 34
 35	/* Start readahead for pass2, if provided. */
 36	void (*ra_pass2)(struct xlog *log, struct xlog_recover_item *item);
 37
 38	/* Do whatever work we need to do for pass1, if provided. */
 39	int (*commit_pass1)(struct xlog *log, struct xlog_recover_item *item);
 40
 41	/*
 42	 * This function should do whatever work is needed for pass2 of log
 43	 * recovery, if provided.
 44	 *
 45	 * If the recovered item is an intent item, this function should parse
 46	 * the recovered item to construct an in-core log intent item and
 47	 * insert it into the AIL.  The in-core log intent item should have 1
 48	 * refcount so that the item is freed either (a) when we commit the
 49	 * recovered log item for the intent-done item; (b) replay the work and
 50	 * log a new intent-done item; or (c) recovery fails and we have to
 51	 * abort.
 52	 *
 53	 * If the recovered item is an intent-done item, this function should
 54	 * parse the recovered item to find the id of the corresponding intent
 55	 * log item.  Next, it should find the in-core log intent item in the
 56	 * AIL and release it.
 57	 */
 58	int (*commit_pass2)(struct xlog *log, struct list_head *buffer_list,
 59			    struct xlog_recover_item *item, xfs_lsn_t lsn);
 60};
 61
 62extern const struct xlog_recover_item_ops xlog_icreate_item_ops;
 63extern const struct xlog_recover_item_ops xlog_buf_item_ops;
 64extern const struct xlog_recover_item_ops xlog_inode_item_ops;
 65extern const struct xlog_recover_item_ops xlog_dquot_item_ops;
 66extern const struct xlog_recover_item_ops xlog_quotaoff_item_ops;
 67extern const struct xlog_recover_item_ops xlog_bui_item_ops;
 68extern const struct xlog_recover_item_ops xlog_bud_item_ops;
 69extern const struct xlog_recover_item_ops xlog_efi_item_ops;
 70extern const struct xlog_recover_item_ops xlog_efd_item_ops;
 71extern const struct xlog_recover_item_ops xlog_rui_item_ops;
 72extern const struct xlog_recover_item_ops xlog_rud_item_ops;
 73extern const struct xlog_recover_item_ops xlog_cui_item_ops;
 74extern const struct xlog_recover_item_ops xlog_cud_item_ops;
 
 
 75
 76/*
 77 * Macros, structures, prototypes for internal log manager use.
 78 */
 79
 80#define XLOG_RHASH_BITS  4
 81#define XLOG_RHASH_SIZE	16
 82#define XLOG_RHASH_SHIFT 2
 83#define XLOG_RHASH(tid)	\
 84	((((uint32_t)tid)>>XLOG_RHASH_SHIFT) & (XLOG_RHASH_SIZE-1))
 85
 86#define XLOG_MAX_REGIONS_IN_ITEM   (XFS_MAX_BLOCKSIZE / XFS_BLF_CHUNK / 2 + 1)
 87
 88
 89/*
 90 * item headers are in ri_buf[0].  Additional buffers follow.
 91 */
 92struct xlog_recover_item {
 93	struct list_head	ri_list;
 94	int			ri_cnt;	/* count of regions found */
 95	int			ri_total;	/* total regions */
 96	struct xfs_log_iovec	*ri_buf;	/* ptr to regions buffer */
 97	const struct xlog_recover_item_ops *ri_ops;
 98};
 99
100struct xlog_recover {
101	struct hlist_node	r_list;
102	xlog_tid_t		r_log_tid;	/* log's transaction id */
103	xfs_trans_header_t	r_theader;	/* trans header for partial */
104	int			r_state;	/* not needed */
105	xfs_lsn_t		r_lsn;		/* xact lsn */
106	struct list_head	r_itemq;	/* q for items */
107};
108
109#define ITEM_TYPE(i)	(*(unsigned short *)(i)->ri_buf[0].i_addr)
110
111/*
112 * This is the number of entries in the l_buf_cancel_table used during
113 * recovery.
114 */
115#define	XLOG_BC_TABLE_SIZE	64
116
117#define	XLOG_RECOVER_CRCPASS	0
118#define	XLOG_RECOVER_PASS1	1
119#define	XLOG_RECOVER_PASS2	2
120
121void xlog_buf_readahead(struct xlog *log, xfs_daddr_t blkno, uint len,
122		const struct xfs_buf_ops *ops);
123bool xlog_is_buffer_cancelled(struct xlog *log, xfs_daddr_t blkno, uint len);
124
 
 
125void xlog_recover_release_intent(struct xlog *log, unsigned short intent_type,
126		uint64_t intent_id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
128#endif	/* __XFS_LOG_RECOVER_H__ */
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
  4 * All Rights Reserved.
  5 */
  6#ifndef	__XFS_LOG_RECOVER_H__
  7#define __XFS_LOG_RECOVER_H__
  8
  9/*
 10 * Each log item type (XFS_LI_*) gets its own xlog_recover_item_ops to
 11 * define how recovery should work for that type of log item.
 12 */
 13struct xlog_recover_item;
 14struct xfs_defer_op_type;
 15
 16/* Sorting hat for log items as they're read in. */
 17enum xlog_recover_reorder {
 18	XLOG_REORDER_BUFFER_LIST,
 19	XLOG_REORDER_ITEM_LIST,
 20	XLOG_REORDER_INODE_BUFFER_LIST,
 21	XLOG_REORDER_CANCEL_LIST,
 22};
 23
 24struct xlog_recover_item_ops {
 25	uint16_t	item_type;	/* XFS_LI_* type code. */
 26
 27	/*
 28	 * Help sort recovered log items into the order required to replay them
 29	 * correctly.  Log item types that always use XLOG_REORDER_ITEM_LIST do
 30	 * not have to supply a function here.  See the comment preceding
 31	 * xlog_recover_reorder_trans for more details about what the return
 32	 * values mean.
 33	 */
 34	enum xlog_recover_reorder (*reorder)(struct xlog_recover_item *item);
 35
 36	/* Start readahead for pass2, if provided. */
 37	void (*ra_pass2)(struct xlog *log, struct xlog_recover_item *item);
 38
 39	/* Do whatever work we need to do for pass1, if provided. */
 40	int (*commit_pass1)(struct xlog *log, struct xlog_recover_item *item);
 41
 42	/*
 43	 * This function should do whatever work is needed for pass2 of log
 44	 * recovery, if provided.
 45	 *
 46	 * If the recovered item is an intent item, this function should parse
 47	 * the recovered item to construct an in-core log intent item and
 48	 * insert it into the AIL.  The in-core log intent item should have 1
 49	 * refcount so that the item is freed either (a) when we commit the
 50	 * recovered log item for the intent-done item; (b) replay the work and
 51	 * log a new intent-done item; or (c) recovery fails and we have to
 52	 * abort.
 53	 *
 54	 * If the recovered item is an intent-done item, this function should
 55	 * parse the recovered item to find the id of the corresponding intent
 56	 * log item.  Next, it should find the in-core log intent item in the
 57	 * AIL and release it.
 58	 */
 59	int (*commit_pass2)(struct xlog *log, struct list_head *buffer_list,
 60			    struct xlog_recover_item *item, xfs_lsn_t lsn);
 61};
 62
 63extern const struct xlog_recover_item_ops xlog_icreate_item_ops;
 64extern const struct xlog_recover_item_ops xlog_buf_item_ops;
 65extern const struct xlog_recover_item_ops xlog_inode_item_ops;
 66extern const struct xlog_recover_item_ops xlog_dquot_item_ops;
 67extern const struct xlog_recover_item_ops xlog_quotaoff_item_ops;
 68extern const struct xlog_recover_item_ops xlog_bui_item_ops;
 69extern const struct xlog_recover_item_ops xlog_bud_item_ops;
 70extern const struct xlog_recover_item_ops xlog_efi_item_ops;
 71extern const struct xlog_recover_item_ops xlog_efd_item_ops;
 72extern const struct xlog_recover_item_ops xlog_rui_item_ops;
 73extern const struct xlog_recover_item_ops xlog_rud_item_ops;
 74extern const struct xlog_recover_item_ops xlog_cui_item_ops;
 75extern const struct xlog_recover_item_ops xlog_cud_item_ops;
 76extern const struct xlog_recover_item_ops xlog_attri_item_ops;
 77extern const struct xlog_recover_item_ops xlog_attrd_item_ops;
 78
 79/*
 80 * Macros, structures, prototypes for internal log manager use.
 81 */
 82
 83#define XLOG_RHASH_BITS  4
 84#define XLOG_RHASH_SIZE	16
 85#define XLOG_RHASH_SHIFT 2
 86#define XLOG_RHASH(tid)	\
 87	((((uint32_t)tid)>>XLOG_RHASH_SHIFT) & (XLOG_RHASH_SIZE-1))
 88
 89#define XLOG_MAX_REGIONS_IN_ITEM   (XFS_MAX_BLOCKSIZE / XFS_BLF_CHUNK / 2 + 1)
 90
 91
 92/*
 93 * item headers are in ri_buf[0].  Additional buffers follow.
 94 */
 95struct xlog_recover_item {
 96	struct list_head	ri_list;
 97	int			ri_cnt;	/* count of regions found */
 98	int			ri_total;	/* total regions */
 99	struct xfs_log_iovec	*ri_buf;	/* ptr to regions buffer */
100	const struct xlog_recover_item_ops *ri_ops;
101};
102
103struct xlog_recover {
104	struct hlist_node	r_list;
105	xlog_tid_t		r_log_tid;	/* log's transaction id */
106	xfs_trans_header_t	r_theader;	/* trans header for partial */
107	int			r_state;	/* not needed */
108	xfs_lsn_t		r_lsn;		/* xact lsn */
109	struct list_head	r_itemq;	/* q for items */
110};
111
112#define ITEM_TYPE(i)	(*(unsigned short *)(i)->ri_buf[0].i_addr)
113
 
 
 
 
 
 
114#define	XLOG_RECOVER_CRCPASS	0
115#define	XLOG_RECOVER_PASS1	1
116#define	XLOG_RECOVER_PASS2	2
117
118void xlog_buf_readahead(struct xlog *log, xfs_daddr_t blkno, uint len,
119		const struct xfs_buf_ops *ops);
120bool xlog_is_buffer_cancelled(struct xlog *log, xfs_daddr_t blkno, uint len);
121
122int xlog_recover_iget(struct xfs_mount *mp, xfs_ino_t ino,
123		struct xfs_inode **ipp);
124void xlog_recover_release_intent(struct xlog *log, unsigned short intent_type,
125		uint64_t intent_id);
126int xlog_alloc_buf_cancel_table(struct xlog *log);
127void xlog_free_buf_cancel_table(struct xlog *log);
128
129#ifdef DEBUG
130void xlog_check_buf_cancel_table(struct xlog *log);
131#else
132#define xlog_check_buf_cancel_table(log) do { } while (0)
133#endif
134
135/*
136 * Transform a regular reservation into one suitable for recovery of a log
137 * intent item.
138 *
139 * Intent recovery only runs a single step of the transaction chain and defers
140 * the rest to a separate transaction.  Therefore, we reduce logcount to 1 here
141 * to avoid livelocks if the log grant space is nearly exhausted due to the
142 * recovered intent pinning the tail.  Keep the same logflags to avoid tripping
143 * asserts elsewhere.  Struct copies abound below.
144 */
145static inline struct xfs_trans_res
146xlog_recover_resv(const struct xfs_trans_res *r)
147{
148	struct xfs_trans_res ret = {
149		.tr_logres	= r->tr_logres,
150		.tr_logcount	= 1,
151		.tr_logflags	= r->tr_logflags,
152	};
153
154	return ret;
155}
156
157struct xfs_defer_pending;
158
159void xlog_recover_intent_item(struct xlog *log, struct xfs_log_item *lip,
160		xfs_lsn_t lsn, const struct xfs_defer_op_type *ops);
161int xlog_recover_finish_intent(struct xfs_trans *tp,
162		struct xfs_defer_pending *dfp);
163
164#endif	/* __XFS_LOG_RECOVER_H__ */