btrfs-progs: move send-dump.c to cmds/receive-dump.c

The dump is a command mode of receive.

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2020-08-18 13:21:23 +02:00
parent 687ca4d127
commit e2995c1cce
5 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ objects := ctree.c disk-io.c kernel-lib/radix-tree.c extent-tree.c print-tree.c
common/extent-cache.c extent_io.c volumes.c utils.c repair.c \
qgroup.c free-space-cache.c kernel-lib/list_sort.c props.c \
kernel-shared/ulist.c qgroup-verify.c backref.c common/string-table.c task-utils.c \
inode.c file.c find-root.c free-space-tree.c help.c send-dump.c \
inode.c file.c find-root.c free-space-tree.c help.c cmds/receive-dump.c \
common/fsfeatures.c kernel-lib/tables.c kernel-lib/raid56.c transaction.c
cmds_objects := cmds-subvolume.c cmds-filesystem.c cmds-device.c cmds-scrub.c \
cmds-inspect.c cmds-balance.c cmds-send.c cmds-receive.c \

View File

@ -147,7 +147,7 @@ objects = kernel-shared/dir-item.o \
qgroup.o kernel-lib/list_sort.o props.o \
kernel-shared/ulist.o check/qgroup-verify.o kernel-shared/backref.o \
common/string-table.o common/task-utils.o \
inode.o file.o find-root.o common/help.o send-dump.o \
inode.o file.o find-root.o common/help.o cmds/receive-dump.o \
common/fsfeatures.o \
common/format-output.o \
common/device-utils.o

View File

@ -35,7 +35,7 @@
#include "cmds/commands.h"
#include "send-utils.h"
#include "send-stream.h"
#include "send-dump.h"
#include "cmds/receive-dump.h"
#define PATH_CAT_OR_RET(function_name, outpath, path1, path2, ret) \
({ \

View File

@ -49,7 +49,7 @@
#include "send.h"
#include "send-stream.h"
#include "send-utils.h"
#include "send-dump.h"
#include "cmds/receive-dump.h"
#include "common/help.h"
#include "common/path-utils.h"