mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 08:14:21 +08:00
btrfs-progs: move send-stream.c to common/
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
e2995c1cce
commit
f6009c4cb3
@ -31,10 +31,10 @@ cmds_objects := cmds-subvolume.c cmds-filesystem.c cmds-device.c cmds-scrub.c \
|
||||
cmds-property.c cmds-fi-usage.c cmds-inspect-dump-tree.c \
|
||||
cmds-inspect-dump-super.c cmds-inspect-tree-stats.c cmds-fi-du.c \
|
||||
mkfs/common.c
|
||||
libbtrfs_objects := send-stream.c send-utils.c kernel-lib/rbtree.c btrfs-list.c \
|
||||
libbtrfs_objects := common/send-stream.c send-utils.c kernel-lib/rbtree.c btrfs-list.c \
|
||||
crypto/crc32c.c messages.c \
|
||||
uuid-tree.c common/utils-lib.c rbtree-utils.c
|
||||
libbtrfs_headers := send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
||||
libbtrfs_headers := common/send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
||||
crypto/crc32c.h kernel-lib/list.h kerncompat.h \
|
||||
kernel-lib/radix-tree.h kernel-lib/sizes.h kernel-lib/raid56.h \
|
||||
common/extent-cache.h extent_io.h ioctl.h ctree.h btrfsck.h version.h
|
||||
|
4
Makefile
4
Makefile
@ -159,7 +159,7 @@ cmds_objects = cmds/subvolume.o cmds/filesystem.o cmds/device.o cmds/scrub.o \
|
||||
cmds/property.o cmds/filesystem-usage.o cmds/inspect-dump-tree.o \
|
||||
cmds/inspect-dump-super.o cmds/inspect-tree-stats.o cmds/filesystem-du.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 \
|
||||
libbtrfs_objects = common/send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
|
||||
kernel-lib/radix-tree.o common/extent-cache.o extent_io.o \
|
||||
crypto/crc32c.o common/messages.o \
|
||||
kernel-shared/uuid-tree.o common/utils-lib.o common/rbtree-utils.o \
|
||||
@ -171,7 +171,7 @@ libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
|
||||
common/device-scan.o common/path-utils.o \
|
||||
common/utils.o libbtrfsutil/subvolume.o libbtrfsutil/stubs.o \
|
||||
crypto/hash.o crypto/xxhash.o $(CRYPTO_OBJECTS)
|
||||
libbtrfs_headers = send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
||||
libbtrfs_headers = common/send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
||||
crypto/crc32c.h kernel-lib/list.h kerncompat.h \
|
||||
kernel-lib/radix-tree.h kernel-lib/sizes.h kernel-lib/raid56.h \
|
||||
common/extent-cache.h extent_io.h ioctl.h ctree.h btrfsck.h version.h
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "common/utils.h"
|
||||
#include "cmds/commands.h"
|
||||
#include "send-utils.h"
|
||||
#include "send-stream.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "cmds/receive-dump.h"
|
||||
|
||||
#define PATH_CAT_OR_RET(function_name, outpath, path1, path2, ret) \
|
||||
|
@ -47,7 +47,7 @@
|
||||
#include "btrfs-list.h"
|
||||
|
||||
#include "send.h"
|
||||
#include "send-stream.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "send-utils.h"
|
||||
#include "cmds/receive-dump.h"
|
||||
#include "common/help.h"
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <unistd.h>
|
||||
|
||||
#include "send.h"
|
||||
#include "send-stream.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "crypto/crc32c.h"
|
||||
#include "common/utils.h"
|
||||
|
@ -41,7 +41,7 @@ global:
|
||||
rb_prev;
|
||||
rb_replace_node;
|
||||
|
||||
/* send-stream.h */
|
||||
/* common/send-stream.h */
|
||||
btrfs_read_and_process_send_stream;
|
||||
|
||||
/* send-utils.h */
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include "check/btrfsck.h"
|
||||
#include "common/extent-cache.h"
|
||||
#include "send.h"
|
||||
#include "send-stream.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "send-utils.h"
|
||||
#else
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user