Whamcloud - gitweb
LU-6142 lustre: remove ldebugfs_add_simple() wrapper. 47/37747/6
authorMr NeilBrown <neilb@suse.de>
Thu, 27 Feb 2020 05:13:59 +0000 (16:13 +1100)
committerOleg Drokin <green@whamcloud.com>
Tue, 14 Apr 2020 08:09:35 +0000 (08:09 +0000)
This is never used, so it not needed.

Test-Parameters: trivial
Signed-off-by: Mr NeilBrown <neilb@suse.de>
Change-Id: Id711102ba9b71fe326e7fe792cb2ed5e511328fe
Reviewed-on: https://review.whamcloud.com/37747
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: Shaun Tancheff <shaun.tancheff@hpe.com>
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
lustre/include/lprocfs_status.h
lustre/obdclass/lprocfs_status.c

index 14a080f..af4c89a 100644 (file)
@@ -501,8 +501,6 @@ struct dentry *ldebugfs_add_symlink(const char *name, const char *target,
 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
 { return 0; }
 #endif
-struct dentry *ldebugfs_add_simple(struct dentry *root, char *name, void *data,
-                                  const struct file_operations *fops);
 extern struct proc_dir_entry *
 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
                   void *data, const struct file_operations *fops);
index 780ab60..a8b6b60 100644 (file)
@@ -59,29 +59,6 @@ int lprocfs_seq_release(struct inode *inode, struct file *file)
 }
 EXPORT_SYMBOL(lprocfs_seq_release);
 
-struct dentry *ldebugfs_add_simple(struct dentry *root,
-                                  char *name, void *data,
-                                  const struct file_operations *fops)
-{
-       struct dentry *entry;
-       umode_t mode = 0;
-
-       if (!root || !name || !fops)
-               return ERR_PTR(-EINVAL);
-
-       if (fops->read)
-               mode = 0444;
-       if (fops->write)
-               mode |= 0200;
-       entry = debugfs_create_file(name, mode, root, data, fops);
-       if (IS_ERR_OR_NULL(entry)) {
-               CERROR("LprocFS: No memory to create <debugfs> entry %s", name);
-               return entry ?: ERR_PTR(-ENOMEM);
-       }
-       return entry;
-}
-EXPORT_SYMBOL(ldebugfs_add_simple);
-
 struct proc_dir_entry *
 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
                   void *data, const struct file_operations *fops)