Lines Matching full:debugfs
3 * inode.c - part of debugfs, a tiny little debug file system
9 * debugfs is for people to use instead of /proc or /sys.
13 #define pr_fmt(fmt) "debugfs: " fmt
23 #include <linux/debugfs.h>
113 * traditionally debugfs has ignored all mount options in debugfs_parse_param()
139 * but traditionally debugfs has ignored all mount options in debugfs_parse_param()
307 .name = "debugfs",
312 MODULE_ALIAS_FS("debugfs");
315 * debugfs_lookup() - look up an existing debugfs file
323 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
484 * debugfs_create_file_unsafe - create a file in the debugfs filesystem
489 * file will be created in the root of the debugfs filesystem.
499 * debugfs core.
504 * debugfs though.
523 * debugfs_create_file_size - create a file in the debugfs filesystem
528 * file will be created in the root of the debugfs filesystem.
536 * This is the basic "create a file" function for debugfs. It allows for a
554 * debugfs_create_dir - create a directory in the debugfs filesystem
559 * directory will be created in the root of the debugfs filesystem.
561 * This function creates a directory in debugfs with the given name.
569 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
573 * by this function. Other debugfs functions handle the fact that the "dentry"
575 * Drivers should generally work fine even if debugfs fails to init anyway.
611 * debugfs_create_automount - create automount point in the debugfs filesystem
615 * file will be created in the root of the debugfs filesystem.
669 * debugfs_create_symlink- create a symbolic link in the debugfs filesystem
674 * then the symbolic link will be created in the root of the debugfs
679 * This function creates a symbolic link with the given name in debugfs that
688 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
795 * This function recursively removes a directory tree in debugfs that
796 * was previously created with a call to another debugfs function
837 * debugfs_rename - rename a file/directory in the debugfs filesystem
845 * This function renames a file/directory in debugfs. The target must not
852 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
909 * debugfs_initialized - Tells whether debugfs has been registered
930 early_param("debugfs", debugfs_kernel);