diff options
author | Nicolai Stange <nicstange@gmail.com> | 2016-03-22 09:11:20 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-12 17:14:21 -0400 |
commit | c4a74f63dfd2e75e7d40a9aaa4052b0ef26e617c (patch) | |
tree | 271e76e0d5a01dd192959f1b6653693fedc96825 /fs/debugfs/file.c | |
parent | 83b711cbf4ff42a9996c5f092762b3967d307d73 (diff) |
debugfs: unproxify files created through debugfs_create_u32_array()
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>
Diffstat (limited to 'fs/debugfs/file.c')
-rw-r--r-- | fs/debugfs/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index 2e86d66f7850..9c1c9a01b7e5 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c | |||
@@ -992,7 +992,8 @@ struct dentry *debugfs_create_u32_array(const char *name, umode_t mode, | |||
992 | data->array = array; | 992 | data->array = array; |
993 | data->elements = elements; | 993 | data->elements = elements; |
994 | 994 | ||
995 | return debugfs_create_file(name, mode, parent, data, &u32_array_fops); | 995 | return debugfs_create_file_unsafe(name, mode, parent, data, |
996 | &u32_array_fops); | ||
996 | } | 997 | } |
997 | EXPORT_SYMBOL_GPL(debugfs_create_u32_array); | 998 | EXPORT_SYMBOL_GPL(debugfs_create_u32_array); |
998 | 999 | ||