]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
debugfs: unproxify files created through debugfs_create_u32_array()
authorNicolai Stange <nicstange@gmail.com>
Tue, 22 Mar 2016 13:11:20 +0000 (14:11 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Apr 2016 21:14:21 +0000 (14:14 -0700)
The struct file_operations u32_array_fops associated with files created
through debugfs_create_u32_array() has been lifetime aware already:
everything needed for subsequent operation is copied to a ->f_private
buffer at file opening time in u32_array_open(). Now, ->open() is always
protected against file removal issues by the debugfs core.

There is no need for the debugfs core to wrap the u32_array_fops
with a file lifetime managing proxy.

Make debugfs_create_u32_array() create its files in non-proxying operation
mode by means of debugfs_create_file_unsafe().

Signed-off-by: Nicolai Stange <nicstange@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/debugfs/file.c

index 2e86d66f7850368c2afa81fb0e1a9adc8149e872..9c1c9a01b7e5120da23888828300d3f1b16e04c4 100644 (file)
@@ -992,7 +992,8 @@ struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
        data->array = array;
        data->elements = elements;
 
-       return debugfs_create_file(name, mode, parent, data, &u32_array_fops);
+       return debugfs_create_file_unsafe(name, mode, parent, data,
+                                       &u32_array_fops);
 }
 EXPORT_SYMBOL_GPL(debugfs_create_u32_array);