diff options
author | David Sterba <dsterba@suse.com> | 2022-06-02 15:25:32 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2022-07-25 17:45:37 +0200 |
commit | e3b4b9040b0f59a27cdd3db31417aeced473f345 (patch) | |
tree | d014f41ec4437212ceb731a2c840680834151732 | |
parent | btrfs: increase direct io read size limit to 256 sectors (diff) | |
download | linux-e3b4b9040b0f59a27cdd3db31417aeced473f345.tar.xz linux-e3b4b9040b0f59a27cdd3db31417aeced473f345.zip |
btrfs: send: drop __KERNEL__ ifdef from send.h
We don't need this ifdef as the header file is not shared, the protocol
definition used by userspace should be from libbtrfs or libbtrfsutil.
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | fs/btrfs/send.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/send.h b/fs/btrfs/send.h index b0dc07567d09..45562190b473 100644 --- a/fs/btrfs/send.h +++ b/fs/btrfs/send.h @@ -155,8 +155,6 @@ enum { BTRFS_SEND_A_MAX = 31, }; -#ifdef __KERNEL__ long btrfs_ioctl_send(struct inode *inode, struct btrfs_ioctl_send_args *arg); -#endif #endif |