]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
btrfs: delete debugfs code
authorDavid Sterba <dsterba@suse.com>
Thu, 13 Jun 2019 15:27:36 +0000 (17:27 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 9 Sep 2019 12:59:05 +0000 (14:59 +0200)
Replaced by the sysfs exports that provide a more fine grained interface
for filesystem debugging.

Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/sysfs.c
fs/btrfs/sysfs.h

index 315204557bfc02937a17e10333a08227091571b5..115499cd6b79e377f5e7d563b267063c2873ae49 100644 (file)
@@ -9,7 +9,6 @@
 #include <linux/completion.h>
 #include <linux/kobject.h>
 #include <linux/bug.h>
-#include <linux/debugfs.h>
 
 #include "ctree.h"
 #include "disk-io.h"
@@ -829,12 +828,6 @@ int btrfs_sysfs_add_device_link(struct btrfs_fs_devices *fs_devices,
 /* /sys/fs/btrfs/ entry */
 static struct kset *btrfs_kset;
 
-/* /sys/kernel/debug/btrfs */
-static struct dentry *btrfs_debugfs_root_dentry;
-
-/* Debugging tunables and exported data */
-u64 btrfs_debugfs_test;
-
 /*
  * Can be called by the device discovery thread.
  * And parent can be specified for seed device
@@ -940,25 +933,6 @@ void btrfs_sysfs_feature_update(struct btrfs_fs_info *fs_info,
        ret = sysfs_create_group(fsid_kobj, &btrfs_feature_attr_group);
 }
 
-static void btrfs_init_debugfs(void)
-{
-#ifdef CONFIG_DEBUG_FS
-       btrfs_debugfs_root_dentry = debugfs_create_dir("btrfs", NULL);
-
-       /*
-        * Example code, how to export data through debugfs.
-        *
-        * file:        /sys/kernel/debug/btrfs/test
-        * contents of: btrfs_debugfs_test
-        */
-#ifdef CONFIG_BTRFS_DEBUG
-       debugfs_create_u64("test", S_IRUGO | S_IWUSR, btrfs_debugfs_root_dentry,
-                       &btrfs_debugfs_test);
-#endif
-
-#endif
-}
-
 int __init btrfs_init_sysfs(void)
 {
        int ret;
@@ -967,8 +941,6 @@ int __init btrfs_init_sysfs(void)
        if (!btrfs_kset)
                return -ENOMEM;
 
-       btrfs_init_debugfs();
-
        init_feature_attrs();
        ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
        if (ret)
@@ -989,7 +961,6 @@ int __init btrfs_init_sysfs(void)
 out_remove_group:
        sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
 out2:
-       debugfs_remove_recursive(btrfs_debugfs_root_dentry);
        kset_unregister(btrfs_kset);
 
        return ret;
@@ -1001,6 +972,5 @@ void __cold btrfs_exit_sysfs(void)
                            &btrfs_static_feature_attr_group);
        sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
        kset_unregister(btrfs_kset);
-       debugfs_remove_recursive(btrfs_debugfs_root_dentry);
 }
 
index 40716b357c1d516193958479ea28702b0014003b..4bb4fe96d4bde3d20751b27c0c64a67845a521e7 100644 (file)
@@ -3,11 +3,6 @@
 #ifndef BTRFS_SYSFS_H
 #define BTRFS_SYSFS_H
 
-/*
- * Data exported through sysfs
- */
-extern u64 btrfs_debugfs_test;
-
 enum btrfs_feature_set {
        FEAT_COMPAT,
        FEAT_COMPAT_RO,