btrfs-progs: check: rename files after moving code
Add prefixes to the files so it's clear they belong to the mode group. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3876f9f1d5
commit
6d3fea8f46
2
Makefile
2
Makefile
|
@ -113,7 +113,7 @@ cmds_objects = cmds-subvolume.o cmds-filesystem.o cmds-device.o cmds-scrub.o \
|
|||
cmds-restore.o cmds-rescue.o chunk-recover.o super-recover.o \
|
||||
cmds-property.o cmds-fi-usage.o cmds-inspect-dump-tree.o \
|
||||
cmds-inspect-dump-super.o cmds-inspect-tree-stats.o cmds-fi-du.o \
|
||||
mkfs/common.o check/common.o check/lowmem.o
|
||||
mkfs/common.o check/mode-common.o check/mode-lowmem.o
|
||||
libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
|
||||
kernel-lib/crc32c.o messages.o \
|
||||
uuid-tree.o utils-lib.o rbtree-utils.o
|
||||
|
|
|
@ -43,9 +43,9 @@
|
|||
#include "kernel-shared/ulist.h"
|
||||
#include "hash.h"
|
||||
#include "help.h"
|
||||
#include "check/original.h"
|
||||
#include "check/lowmem.h"
|
||||
#include "check/common.h"
|
||||
#include "check/mode-common.h"
|
||||
#include "check/mode-original.h"
|
||||
#include "check/mode-lowmem.h"
|
||||
|
||||
enum task_position {
|
||||
TASK_EXTENTS,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "transaction.h"
|
||||
#include "utils.h"
|
||||
#include "disk-io.h"
|
||||
#include "check/common.h"
|
||||
#include "check/mode-common.h"
|
||||
|
||||
/*
|
||||
* Search in csum tree to find how many bytes of range [@start, @start + @len)
|
|
@ -18,8 +18,8 @@
|
|||
* Defines and function declarations for code shared by both lowmem and
|
||||
* original mode
|
||||
*/
|
||||
#ifndef __BTRFS_CHECK_COMMON_H__
|
||||
#define __BTRFS_CHECK_COMMON_H__
|
||||
#ifndef __BTRFS_CHECK_MODE_COMMON_H__
|
||||
#define __BTRFS_CHECK_MODE_COMMON_H__
|
||||
|
||||
#include <sys/stat.h>
|
||||
#include "ctree.h"
|
|
@ -25,8 +25,8 @@
|
|||
#include "internal.h"
|
||||
#include "utils.h"
|
||||
#include "volumes.h"
|
||||
#include "check/common.h"
|
||||
#include "check/lowmem.h"
|
||||
#include "check/mode-common.h"
|
||||
#include "check/mode-lowmem.h"
|
||||
|
||||
static int calc_extent_flag(struct btrfs_root *root, struct extent_buffer *eb,
|
||||
u64 *flags_ret)
|
|
@ -17,10 +17,10 @@
|
|||
/*
|
||||
* Defines and function declarations for lowmem mode check.
|
||||
*/
|
||||
#ifndef __BTRFS_CHECK_LOWMEM_H__
|
||||
#define __BTRFS_CHECK_LOWMEM_H__
|
||||
#ifndef __BTRFS_CHECK_MODE_LOWMEM_H__
|
||||
#define __BTRFS_CHECK_MODE_LOWMEM_H__
|
||||
|
||||
#include "check/common.h"
|
||||
#include "check/mode-common.h"
|
||||
|
||||
#define ROOT_DIR_ERROR (1<<1) /* bad ROOT_DIR */
|
||||
#define DIR_ITEM_MISSING (1<<2) /* DIR_ITEM not found */
|
|
@ -18,8 +18,9 @@
|
|||
* Defines and function declarations for original mode check.
|
||||
*/
|
||||
|
||||
#ifndef __BTRFS_CHECK_ORIGINAL_H__
|
||||
#define __BTRFS_CHECK_ORIGINAL_H__
|
||||
#ifndef __BTRFS_CHECK_MODE_ORIGINAL_H__
|
||||
#define __BTRFS_CHECK_MODE_ORIGINAL_H__
|
||||
|
||||
#include "rbtree-utils.h"
|
||||
|
||||
struct extent_backref {
|
Loading…
Reference in New Issue