Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 /*
0003  * Copyright (C) 2017 Oracle.  All Rights Reserved.
0004  * Author: Darrick J. Wong <darrick.wong@oracle.com>
0005  */
0006 #ifndef __XFS_SCRUB_H__
0007 #define __XFS_SCRUB_H__
0008 
0009 #ifndef CONFIG_XFS_ONLINE_SCRUB
0010 # define xfs_scrub_metadata(file, sm)   (-ENOTTY)
0011 #else
0012 int xfs_scrub_metadata(struct file *file, struct xfs_scrub_metadata *sm);
0013 #endif /* CONFIG_XFS_ONLINE_SCRUB */
0014 
0015 #endif  /* __XFS_SCRUB_H__ */