Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1333396
| From | Nicolai Stange <nicstange@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 7/7] debugfs: unproxify files created through debugfs_create_u32_array() |
| Date | 2016-02-14 02:40 +0100 |
| Message-ID | <r1TPk-4oo-33@gated-at.bofh.it> (permalink) |
| References | <r1TPj-4oo-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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> --- fs/debugfs/file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index 036ec3f..1a03e99 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c @@ -993,7 +993,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); -- 2.7.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v3 0/7] fix debugfs file removal races Nicolai Stange <nicstange@gmail.com> - 2016-02-14 02:40 +0100 [PATCH v3 6/7] debugfs: unproxify files created through debugfs_create_blob() Nicolai Stange <nicstange@gmail.com> - 2016-02-14 02:40 +0100 [PATCH v3 1/7] debugfs: prevent access to possibly dead file_operations at file open Nicolai Stange <nicstange@gmail.com> - 2016-02-14 02:40 +0100 [PATCH v3 7/7] debugfs: unproxify files created through debugfs_create_u32_array() Nicolai Stange <nicstange@gmail.com> - 2016-02-14 02:40 +0100 [PATCH v3 2/7] debugfs: prevent access to removed files' private data Nicolai Stange <nicstange@gmail.com> - 2016-02-14 02:40 +0100 [PATCH v3.1 4/7] debugfs: unproxify attribute files created through debugfs_create_*() Nicolai Stange <nicstange@gmail.com> - 2016-02-14 02:50 +0100
csiph-web