summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2022-06-02 15:28:41 +0200
committerDavid Sterba <dsterba@suse.com>2022-07-25 17:45:37 +0200
commit8234d3f658b65584f1298960fc96a62f9e2a9f38 (patch)
tree65a8cb744d8e54e3b80d0d90dfe5382fedb7546d
parente3b4b9040b0f59a27cdd3db31417aeced473f345 (diff)
downloadlwn-8234d3f658b65584f1298960fc96a62f9e2a9f38.tar.gz
lwn-8234d3f658b65584f1298960fc96a62f9e2a9f38.zip
btrfs: send: simplify includes
We don't need the whole ctree.h in send.h, none of the data types defined there are used. Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r--fs/btrfs/send.c1
-rw-r--r--fs/btrfs/send.h5
2 files changed, 5 insertions, 1 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c
index 6d01dc26d408..8f88df368c31 100644
--- a/fs/btrfs/send.c
+++ b/fs/btrfs/send.c
@@ -17,6 +17,7 @@
#include <linux/crc32c.h>
#include "send.h"
+#include "ctree.h"
#include "backref.h"
#include "locking.h"
#include "disk-io.h"
diff --git a/fs/btrfs/send.h b/fs/btrfs/send.h
index 45562190b473..7f615ddc8d9c 100644
--- a/fs/btrfs/send.h
+++ b/fs/btrfs/send.h
@@ -7,7 +7,7 @@
#ifndef BTRFS_SEND_H
#define BTRFS_SEND_H
-#include "ctree.h"
+#include <linux/types.h>
#define BTRFS_SEND_STREAM_MAGIC "btrfs-stream"
#define BTRFS_SEND_STREAM_VERSION 2
@@ -18,6 +18,9 @@
*/
#define BTRFS_SEND_BUF_SIZE_V1 SZ_64K
+struct inode;
+struct btrfs_ioctl_send_args;
+
enum btrfs_tlv_type {
BTRFS_TLV_U8,
BTRFS_TLV_U16,