• Home
  • Raw
  • Download

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>
144 * but traditionally debugfs has ignored all mount options in debugfs_parse_options()
283 .name = "debugfs",
287 MODULE_ALIAS_FS("debugfs");
290 * debugfs_lookup() - look up an existing debugfs file
298 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
429 * debugfs_create_file - create a file in the debugfs filesystem
434 * file will be created in the root of the debugfs filesystem.
441 * This is the basic "create a file" function for debugfs. It allows for a
452 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
468 * debugfs_create_file_unsafe - create a file in the debugfs filesystem
473 * file will be created in the root of the debugfs filesystem.
483 * debugfs core.
488 * debugfs though.
507 * debugfs_create_file_size - create a file in the debugfs filesystem
512 * file will be created in the root of the debugfs filesystem.
520 * This is the basic "create a file" function for debugfs. It allows for a
538 * debugfs_create_dir - create a directory in the debugfs filesystem
543 * directory will be created in the root of the debugfs filesystem.
545 * This function creates a directory in debugfs with the given name.
553 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
590 * debugfs_create_automount - create automount point in the debugfs filesystem
594 * file will be created in the root of the debugfs filesystem.
648 * debugfs_create_symlink- create a symbolic link in the debugfs filesystem
653 * then the symbolic link will be created in the root of the debugfs
658 * This function creates a symbolic link with the given name in debugfs that
667 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
730 * This function recursively removes a directory tree in debugfs that
731 * was previously created with a call to another debugfs function
772 * debugfs_rename - rename a file/directory in the debugfs filesystem
780 * This function renames a file/directory in debugfs. The target must not
787 * If debugfs is not enabled in the kernel, the value -%ENODEV will be
844 * debugfs_initialized - Tells whether debugfs has been registered
865 early_param("debugfs", debugfs_kernel);