scrub.c (84d42ea6b6269aee7eb3d91a4425a08b8965fd4a) scrub.c (d25522f10cfa342a20867086a516c45c87b0877c)
1/*
2 * Copyright (C) 2017 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

--- 202 unchanged lines hidden (view full) ---

211 .setup = xfs_scrub_setup_fs,
212 .scrub = xfs_scrub_probe,
213 .repair = xfs_repair_probe,
214 },
215 [XFS_SCRUB_TYPE_SB] = { /* superblock */
216 .type = ST_PERAG,
217 .setup = xfs_scrub_setup_fs,
218 .scrub = xfs_scrub_superblock,
1/*
2 * Copyright (C) 2017 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

--- 202 unchanged lines hidden (view full) ---

211 .setup = xfs_scrub_setup_fs,
212 .scrub = xfs_scrub_probe,
213 .repair = xfs_repair_probe,
214 },
215 [XFS_SCRUB_TYPE_SB] = { /* superblock */
216 .type = ST_PERAG,
217 .setup = xfs_scrub_setup_fs,
218 .scrub = xfs_scrub_superblock,
219 .repair = xfs_repair_notsupported,
219 .repair = xfs_repair_superblock,
220 },
221 [XFS_SCRUB_TYPE_AGF] = { /* agf */
222 .type = ST_PERAG,
223 .setup = xfs_scrub_setup_fs,
224 .scrub = xfs_scrub_agf,
225 .repair = xfs_repair_notsupported,
226 },
227 [XFS_SCRUB_TYPE_AGFL]= { /* agfl */

--- 363 unchanged lines hidden ---
220 },
221 [XFS_SCRUB_TYPE_AGF] = { /* agf */
222 .type = ST_PERAG,
223 .setup = xfs_scrub_setup_fs,
224 .scrub = xfs_scrub_agf,
225 .repair = xfs_repair_notsupported,
226 },
227 [XFS_SCRUB_TYPE_AGFL]= { /* agfl */

--- 363 unchanged lines hidden ---