mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 08:14:21 +08:00
146cca7e16
The clear-cache functionality is shared by several commands: - btrfs check For --clear-cache and --clear-ino-cache. - btrfstune Mostly for block-group-tree feature conversion. - btrfs-convert To enable the now default v2 space cache. Thus it's no longer proper to keep clear-cache.[ch] under check/ directory, move them to common/ directory. Signed-off-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public
|
|
* License v2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will 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 to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 021110-1307, USA.
|
|
*/
|
|
|
|
#ifndef __BTRFS_CHECK_CLEAR_CACHE_H__
|
|
#define __BTRFS_CHECK_CLEAR_CACHE_H__
|
|
|
|
struct btrfs_fs_info;
|
|
struct btrfs_root;
|
|
struct task_ctx;
|
|
|
|
int btrfs_clear_v1_cache(struct btrfs_fs_info *fs_info);
|
|
int do_clear_free_space_cache(struct btrfs_fs_info *fs_info, int clear_version);
|
|
int validate_free_space_cache(struct btrfs_root *root, struct task_ctx *task_ctx);
|
|
int truncate_free_ino_items(struct btrfs_root *root);
|
|
int clear_ino_cache_items(struct btrfs_fs_info *fs_info);
|
|
|
|
#endif
|