]> git.karo-electronics.de Git - karo-tx-linux.git/commit
debugfs: unproxify files created through debugfs_create_blob()
authorNicolai Stange <nicstange@gmail.com>
Tue, 22 Mar 2016 13:11:19 +0000 (14:11 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Apr 2016 21:14:21 +0000 (14:14 -0700)
commit83b711cbf4ff42a9996c5f092762b3967d307d73
tree9907e784c0f08708c52651cedd65bc355106bf06
parent4d45f7974ccf0aa783034fef2661573b3a28609e
debugfs: unproxify files created through debugfs_create_blob()

Currently, the struct file_operations fops_blob associated with files
created through the debugfs_create_blob() helpers are not file
lifetime aware.

Thus, a lifetime managing proxy is created around fops_blob each time such
a file is opened which is an unnecessary waste of resources.

Implement file lifetime management for the fops_bool file_operations.
Namely, make read_file_blob() safe gainst file removals by means of
debugfs_use_file_start() and debugfs_use_file_finish().

Make debugfs_create_blob() 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