diff options
Diffstat (limited to 'fs/debugfs/file.c')
-rw-r--r-- | fs/debugfs/file.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index 8e0f2f410189..517e64938438 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
24 | #include <linux/atomic.h> | 24 | #include <linux/atomic.h> |
25 | #include <linux/device.h> | ||
25 | 26 | ||
26 | static ssize_t default_read_file(struct file *file, char __user *buf, | 27 | static ssize_t default_read_file(struct file *file, char __user *buf, |
27 | size_t count, loff_t *ppos) | 28 | size_t count, loff_t *ppos) |
@@ -762,3 +763,56 @@ struct dentry *debugfs_create_regset32(const char *name, umode_t mode, | |||
762 | EXPORT_SYMBOL_GPL(debugfs_create_regset32); | 763 | EXPORT_SYMBOL_GPL(debugfs_create_regset32); |
763 | 764 | ||
764 | #endif /* CONFIG_HAS_IOMEM */ | 765 | #endif /* CONFIG_HAS_IOMEM */ |
766 | |||
767 | struct debugfs_devm_entry { | ||
768 | int (*read)(struct seq_file *seq, void *data); | ||
769 | struct device *dev; | ||
770 | }; | ||
771 | |||
772 | static int debugfs_devm_entry_open(struct inode *inode, struct file *f) | ||
773 | { | ||
774 | struct debugfs_devm_entry *entry = inode->i_private; | ||
775 | |||
776 | return single_open(f, entry->read, entry->dev); | ||
777 | } | ||
778 | |||
779 | static const struct file_operations debugfs_devm_entry_ops = { | ||
780 | .owner = THIS_MODULE, | ||
781 | .open = debugfs_devm_entry_open, | ||
782 | .release = single_release, | ||
783 | .read = seq_read, | ||
784 | .llseek = seq_lseek | ||
785 | }; | ||
786 | |||
787 | /** | ||
788 | * debugfs_create_devm_seqfile - create a debugfs file that is bound to device. | ||
789 | * | ||
790 | * @dev: device related to this debugfs file. | ||
791 | * @name: name of the debugfs file. | ||
792 | * @parent: a pointer to the parent dentry for this file. This should be a | ||
793 | * directory dentry if set. If this parameter is %NULL, then the | ||
794 | * file will be created in the root of the debugfs filesystem. | ||
795 | * @read_fn: function pointer called to print the seq_file content. | ||
796 | */ | ||
797 | struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name, | ||
798 | struct dentry *parent, | ||
799 | int (*read_fn)(struct seq_file *s, | ||
800 | void *data)) | ||
801 | { | ||
802 | struct debugfs_devm_entry *entry; | ||
803 | |||
804 | if (IS_ERR(parent)) | ||
805 | return ERR_PTR(-ENOENT); | ||
806 | |||
807 | entry = devm_kzalloc(dev, sizeof(*entry), GFP_KERNEL); | ||
808 | if (!entry) | ||
809 | return ERR_PTR(-ENOMEM); | ||
810 | |||
811 | entry->read = read_fn; | ||
812 | entry->dev = dev; | ||
813 | |||
814 | return debugfs_create_file(name, S_IRUGO, parent, entry, | ||
815 | &debugfs_devm_entry_ops); | ||
816 | } | ||
817 | EXPORT_SYMBOL_GPL(debugfs_create_devm_seqfile); | ||
818 | |||