mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-19 19:26:51 +00:00
btrfs-progs: move send-utils.c to common/
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
f6009c4cb3
commit
cdaf906d68
@ -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 := common/send-stream.c send-utils.c kernel-lib/rbtree.c btrfs-list.c \
|
||||
libbtrfs_objects := common/send-stream.c common/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 := common/send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
||||
libbtrfs_headers := common/send-stream.h common/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 = common/send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
|
||||
libbtrfs_objects = common/send-stream.o common/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 = common/send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-l
|
||||
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 = common/send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
||||
libbtrfs_headers = common/send-stream.h common/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
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "ioctl.h"
|
||||
#include "common/utils.h"
|
||||
#include "ctree.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
#include "disk-io.h"
|
||||
#include "cmds/commands.h"
|
||||
#include "btrfs-list.h"
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <uuid/uuid.h>
|
||||
#include "common/utils.h"
|
||||
#include "cmds/commands.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "cmds/receive-dump.h"
|
||||
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include "send.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
#include "cmds/receive-dump.h"
|
||||
#include "common/help.h"
|
||||
#include "common/path-utils.h"
|
||||
|
@ -42,7 +42,7 @@
|
||||
#include "common/utils.h"
|
||||
|
||||
#include "send.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
#include "common/help.h"
|
||||
#include "common/path-utils.h"
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <errno.h>
|
||||
|
||||
#include "ctree.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
#include "ioctl.h"
|
||||
#include "btrfs-list.h"
|
||||
|
@ -44,7 +44,7 @@ global:
|
||||
/* common/send-stream.h */
|
||||
btrfs_read_and_process_send_stream;
|
||||
|
||||
/* send-utils.h */
|
||||
/* common/send-utils.h */
|
||||
subvol_uuid_search;
|
||||
subvol_uuid_search2;
|
||||
subvol_uuid_search_add;
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "common/utils.h"
|
||||
#include "mkfs/rootdir.h"
|
||||
#include "mkfs/common.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
|
||||
static u32 fs_block_size;
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "common/extent-cache.h"
|
||||
#include "send.h"
|
||||
#include "common/send-stream.h"
|
||||
#include "send-utils.h"
|
||||
#include "common/send-utils.h"
|
||||
#else
|
||||
/*
|
||||
* This needs to include headers the same way as an external program but must
|
||||
|
Loading…
Reference in New Issue
Block a user