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
22 #include <linux/debugfs.h>
148 * but traditionally debugfs has ignored all mount options in debugfs_parse_options()
305 .name = "debugfs",
309 MODULE_ALIAS_FS("debugfs");
312 * debugfs_lookup() - look up an existing debugfs file
320 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
451 * debugfs_create_file - create a file in the debugfs filesystem
456 * file will be created in the root of the debugfs filesystem.
463 * This is the basic "create a file" function for debugfs. It allows for a
474 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
478 * by this function. Other debugfs functions handle the fact that the "dentry"
480 * Drivers should generally work fine even if debugfs fails to init anyway.
495 * debugfs_create_file_unsafe - create a file in the debugfs filesystem
500 * file will be created in the root of the debugfs filesystem.
510 * debugfs core.
515 * debugfs though.
534 * debugfs_create_file_size - create a file in the debugfs filesystem
539 * file will be created in the root of the debugfs filesystem.
547 * This is the basic "create a file" function for debugfs. It allows for a
565 * debugfs_create_dir - create a directory in the debugfs filesystem
570 * directory will be created in the root of the debugfs filesystem.
572 * This function creates a directory in debugfs with the given name.
580 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
584 * by this function. Other debugfs functions handle the fact that the "dentry"
586 * Drivers should generally work fine even if debugfs fails to init anyway.
622 * debugfs_create_automount - create automount point in the debugfs filesystem
626 * 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
751 * This function recursively removes a directory tree in debugfs that
752 * was previously created with a call to another debugfs function
793 * debugfs_rename - rename a file/directory in the debugfs filesystem
801 * This function renames a file/directory in debugfs. The target must not
808 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
865 * debugfs_initialized - Tells whether debugfs has been registered
886 early_param("debugfs", debugfs_kernel);