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()
320 .name = "debugfs",
325 MODULE_ALIAS_FS("debugfs");
328 * debugfs_lookup() - look up an existing debugfs file
336 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
492 * debugfs_create_file_unsafe - create a file in the debugfs filesystem
497 * file will be created in the root of the debugfs filesystem.
507 * debugfs core.
512 * debugfs though.
530 * debugfs_create_file_size - create a file in the debugfs filesystem
535 * file will be created in the root of the debugfs filesystem.
543 * This is the basic "create a file" function for debugfs. It allows for a
561 * debugfs_create_dir - create a directory in the debugfs filesystem
566 * directory will be created in the root of the debugfs filesystem.
568 * This function creates a directory in debugfs with the given name.
576 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
580 * by this function. Other debugfs functions handle the fact that the "dentry"
582 * Drivers should generally work fine even if debugfs fails to init anyway.
618 * debugfs_create_automount - create automount point in the debugfs filesystem
622 * file will be created in the root of the debugfs filesystem.
665 * debugfs_create_symlink- create a symbolic link in the debugfs filesystem
670 * then the symbolic link will be created in the root of the debugfs
675 * This function creates a symbolic link with the given name in debugfs that
684 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
791 * This function recursively removes a directory tree in debugfs that
792 * was previously created with a call to another debugfs function
833 * debugfs_change_name - rename a file/directory in the debugfs filesystem
837 * This function renames a file/directory in debugfs. The target must not
842 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
899 * debugfs_initialized - Tells whether debugfs has been registered
920 early_param("debugfs", debugfs_kernel);