mirror of https://gitee.com/openkylin/linux.git
60 lines
1.7 KiB
C
60 lines
1.7 KiB
C
|
/*
|
||
|
* Copyright (C) 2017 Oracle. All Rights Reserved.
|
||
|
*
|
||
|
* Author: Darrick J. Wong <darrick.wong@oracle.com>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License
|
||
|
* as published by the Free Software Foundation; either version 2
|
||
|
* of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it would be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write the Free Software Foundation,
|
||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
#include "xfs.h"
|
||
|
#include "xfs_fs.h"
|
||
|
#include "xfs_shared.h"
|
||
|
#include "xfs_format.h"
|
||
|
#include "xfs_trans_resv.h"
|
||
|
#include "xfs_mount.h"
|
||
|
#include "xfs_defer.h"
|
||
|
#include "xfs_btree.h"
|
||
|
#include "xfs_bit.h"
|
||
|
#include "xfs_log_format.h"
|
||
|
#include "xfs_trans.h"
|
||
|
#include "xfs_sb.h"
|
||
|
#include "xfs_inode.h"
|
||
|
#include "xfs_alloc.h"
|
||
|
#include "xfs_alloc_btree.h"
|
||
|
#include "xfs_bmap.h"
|
||
|
#include "xfs_bmap_btree.h"
|
||
|
#include "xfs_ialloc.h"
|
||
|
#include "xfs_ialloc_btree.h"
|
||
|
#include "xfs_refcount.h"
|
||
|
#include "xfs_refcount_btree.h"
|
||
|
#include "xfs_rmap.h"
|
||
|
#include "xfs_rmap_btree.h"
|
||
|
#include "scrub/xfs_scrub.h"
|
||
|
#include "scrub/scrub.h"
|
||
|
#include "scrub/common.h"
|
||
|
#include "scrub/trace.h"
|
||
|
|
||
|
/* Common code for the metadata scrubbers. */
|
||
|
|
||
|
/* Per-scrubber setup functions */
|
||
|
|
||
|
/* Set us up with a transaction and an empty context. */
|
||
|
int
|
||
|
xfs_scrub_setup_fs(
|
||
|
struct xfs_scrub_context *sc,
|
||
|
struct xfs_inode *ip)
|
||
|
{
|
||
|
return xfs_scrub_trans_alloc(sc->sm, sc->mp, &sc->tp);
|
||
|
}
|