]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - include/xfs_log_recover.h
xfs: refactor buffer logging into buffer dirtying helper
[thirdparty/xfsprogs-dev.git] / include / xfs_log_recover.h
CommitLineData
2bd0ea18 1/*
f302e9e4
NS
2 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
5000d01d 4 *
f302e9e4
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
2bd0ea18 7 * published by the Free Software Foundation.
5000d01d 8 *
f302e9e4
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
5000d01d 13 *
f302e9e4
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2bd0ea18 17 */
dfc130f3 18#ifndef __XFS_LOG_RECOVER_H__
2bd0ea18
NS
19#define __XFS_LOG_RECOVER_H__
20
21/*
22 * Macros, structures, prototypes for internal log manager use.
23 */
24
dfc130f3
RC
25#define XLOG_RHASH_BITS 4
26#define XLOG_RHASH_SIZE 16
2bd0ea18 27#define XLOG_RHASH_SHIFT 2
dfc130f3 28#define XLOG_RHASH(tid) \
14f8b681 29 ((((uint32_t)tid)>>XLOG_RHASH_SHIFT) & (XLOG_RHASH_SIZE-1))
2bd0ea18 30
c40bdaa2 31#define XLOG_MAX_REGIONS_IN_ITEM (XFS_MAX_BLOCKSIZE / XFS_BLF_CHUNK / 2 + 1)
2bd0ea18
NS
32
33
34/*
35 * item headers are in ri_buf[0]. Additional buffers follow.
36 */
37typedef struct xlog_recover_item {
c40bdaa2
DC
38 struct list_head ri_list;
39 int ri_type;
40 int ri_cnt; /* count of regions found */
41 int ri_total; /* total regions */
42 xfs_log_iovec_t *ri_buf; /* ptr to regions buffer */
2bd0ea18
NS
43} xlog_recover_item_t;
44
2bd0ea18 45typedef struct xlog_recover {
c40bdaa2
DC
46 struct hlist_node r_list;
47 xlog_tid_t r_log_tid; /* log's transaction id */
48 xfs_trans_header_t r_theader; /* trans header for partial */
49 int r_state; /* not needed */
50 xfs_lsn_t r_lsn; /* xact lsn */
51 struct list_head r_itemq; /* q for items */
2bd0ea18
NS
52} xlog_recover_t;
53
919dbc78 54#define ITEM_TYPE(i) (*(unsigned short *)(i)->ri_buf[0].i_addr)
2bd0ea18
NS
55
56/*
57 * This is the number of entries in the l_buf_cancel_table used during
58 * recovery.
59 */
dfc130f3 60#define XLOG_BC_TABLE_SIZE 64
2bd0ea18 61
dfc130f3
RC
62#define XLOG_RECOVER_PASS1 1
63#define XLOG_RECOVER_PASS2 2
2bd0ea18
NS
64
65#endif /* __XFS_LOG_RECOVER_H__ */