aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
diff options
context:
space:
mode:
authorOleg Drokin <green@linuxhacker.ru>2015-05-21 15:32:07 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-05-31 11:10:36 +0900
commit4361a048743f900bb0710bd7cb36a650d7bef93a (patch)
tree750750447c6a71394cbc232ddbf892a75db8b63a /drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
parentstaging/lustre: Add debugfs root (diff)
downloadlinux-dev-4361a048743f900bb0710bd7cb36a650d7bef93a.tar.xz
linux-dev-4361a048743f900bb0710bd7cb36a650d7bef93a.zip
staging/lustre: move /proc/fs/lustre/devices to debugfs
the devices file prints out status information about all obd devices in the system in human readable form. Signed-off-by: Dmitry Eremin <dmitry.eremin@intel.com> Signed-off-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/obdclass/linux/linux-module.c')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/linux/linux-module.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
index 72113a915298..03a982a9309f 100644
--- a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
+++ b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
@@ -407,7 +407,7 @@ static int obd_device_list_open(struct inode *inode, struct file *file)
return rc;
seq = file->private_data;
- seq->private = PDE_DATA(inode);
+ seq->private = inode->i_private;
return 0;
}
@@ -467,12 +467,7 @@ int class_procfs_init(void)
kobject_put(lustre_kobj);
goto out;
}
-
- rc = lprocfs_seq_create(proc_lustre_root, "devices", 0444,
- &obd_device_list_fops, NULL);
out:
- if (rc)
- CERROR("error adding /proc/fs/lustre/devices file\n");
return rc;
}