]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - repair/rmap.h
xfs_repair: fix naming problems in repair/rmap.c
[thirdparty/xfsprogs-dev.git] / repair / rmap.h
CommitLineData
9e0f480e
DW
1/*
2 * Copyright (C) 2016 Oracle. All Rights Reserved.
3 *
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it would be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20#ifndef RMAP_H_
21#define RMAP_H_
22
23extern bool collect_rmaps;
24
2d273771 25extern bool rmap_needs_work(struct xfs_mount *);
9e0f480e 26
2d273771
DW
27extern void rmaps_init(struct xfs_mount *);
28extern void rmaps_free(struct xfs_mount *);
9e0f480e 29
2d273771
DW
30extern int rmap_add_rec(struct xfs_mount *, xfs_ino_t, int, struct xfs_bmbt_irec *);
31extern int rmap_finish_collecting_fork_recs(struct xfs_mount *mp,
b7f12e53 32 xfs_agnumber_t agno);
2d273771 33extern int rmap_add_ag_rec(struct xfs_mount *, xfs_agnumber_t agno,
1102c155 34 xfs_agblock_t agbno, xfs_extlen_t len, uint64_t owner);
2d273771
DW
35extern int rmap_add_bmbt_rec(struct xfs_mount *, xfs_ino_t, int, xfs_fsblock_t);
36extern int rmap_fold_raw_recs(struct xfs_mount *mp, xfs_agnumber_t agno);
37extern bool rmaps_are_mergeable(struct xfs_rmap_irec *r1, struct xfs_rmap_irec *r2);
9e0f480e 38
2d273771
DW
39extern int rmap_add_fixed_ag_rec(struct xfs_mount *, xfs_agnumber_t);
40extern int rmap_store_ag_btree_rec(struct xfs_mount *, xfs_agnumber_t);
713b6817 41
11b9e510 42extern size_t rmap_record_count(struct xfs_mount *, xfs_agnumber_t);
2d273771 43extern int rmap_init_cursor(xfs_agnumber_t, struct xfs_slab_cursor **);
11b9e510 44extern void rmap_avoid_check(void);
2d273771 45extern int rmaps_verify_btree(struct xfs_mount *, xfs_agnumber_t);
11b9e510
DW
46
47extern __int64_t rmap_diffkeys(struct xfs_rmap_irec *kp1,
48 struct xfs_rmap_irec *kp2);
49extern void rmap_high_key_from_rec(struct xfs_rmap_irec *rec,
50 struct xfs_rmap_irec *key);
51
62cf990a
DW
52extern void fix_freelist(struct xfs_mount *, xfs_agnumber_t, bool);
53extern void rmap_store_agflcount(struct xfs_mount *, xfs_agnumber_t, int);
54
9e0f480e 55#endif /* RMAP_H_ */