[PATCH v2 17/36] btrfs: add encryption to CONFIG_BTRFS_DEBUG

2023年10月10日 13:42:36 -0700

From: Sweet Tea Dorminy <[email protected]>
Since encryption is currently under BTRFS_DEBUG, this adds its
dependencies: inline encryption from fscrypt, and the inline encryption
fallback path from the block layer.
Signed-off-by: Sweet Tea Dorminy <[email protected]>
Signed-off-by: Josef Bacik <[email protected]>
---
 fs/btrfs/ioctl.c | 2 ++
 1 file changed, 2 insertions(+)
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index 5938adb64409..c56986031870 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -4575,6 +4575,7 @@ long btrfs_ioctl(struct file *file, unsigned int
 return btrfs_ioctl_get_fslabel(fs_info, argp);
 case FS_IOC_SETFSLABEL:
 return btrfs_ioctl_set_fslabel(file, argp);
+#ifdef CONFIG_BTRFS_DEBUG
 case FS_IOC_SET_ENCRYPTION_POLICY: {
 if (!IS_ENABLED(CONFIG_FS_ENCRYPTION))
 return -EOPNOTSUPP;
@@ -4603,6 +4604,7 @@ long btrfs_ioctl(struct file *file, unsigned int
 return fscrypt_ioctl_get_key_status(file, (void __user *)arg);
 case FS_IOC_GET_ENCRYPTION_NONCE:
 return fscrypt_ioctl_get_nonce(file, (void __user *)arg);
+#endif /* CONFIG_BTRFS_DEBUG */
 case FITRIM:
 return btrfs_ioctl_fitrim(fs_info, argp);
 case BTRFS_IOC_SNAP_CREATE:
-- 
2.41.0

Reply via email to