|
@@ -157,6 +157,7 @@ static int dasd_devices_open(struct inode *inode, struct file *file)
|
|
|
}
|
|
|
|
|
|
static const struct file_operations dasd_devices_file_ops = {
|
|
|
+ .owner = THIS_MODULE,
|
|
|
.open = dasd_devices_open,
|
|
|
.read = seq_read,
|
|
|
.llseek = seq_lseek,
|
|
@@ -315,13 +316,12 @@ dasd_proc_init(void)
|
|
|
if (!dasd_proc_root_entry)
|
|
|
goto out_nodasd;
|
|
|
dasd_proc_root_entry->owner = THIS_MODULE;
|
|
|
- dasd_devices_entry = create_proc_entry("devices",
|
|
|
- S_IFREG | S_IRUGO | S_IWUSR,
|
|
|
- dasd_proc_root_entry);
|
|
|
+ dasd_devices_entry = proc_create("devices",
|
|
|
+ S_IFREG | S_IRUGO | S_IWUSR,
|
|
|
+ dasd_proc_root_entry,
|
|
|
+ &dasd_devices_file_ops);
|
|
|
if (!dasd_devices_entry)
|
|
|
goto out_nodevices;
|
|
|
- dasd_devices_entry->proc_fops = &dasd_devices_file_ops;
|
|
|
- dasd_devices_entry->owner = THIS_MODULE;
|
|
|
dasd_statistics_entry = create_proc_entry("statistics",
|
|
|
S_IFREG | S_IRUGO | S_IWUSR,
|
|
|
dasd_proc_root_entry);
|