• Home
  • Raw
  • Download

Lines Matching full:debugfs

3  *  file.c - part of debugfs, a tiny little debug file system
8 * debugfs is for people to use instead of /proc or /sys.
16 #include <linux/debugfs.h>
88 * This could only happen if some debugfs user erroneously calls in debugfs_file_get()
197 WARN(1, "debugfs file owner did not clean up at exit: %pd", in open_proxy_open()
334 WARN(1, "debugfs file owner did not clean up at exit: %pd", in full_proxy_open()
355 WARN(1, "debugfs file owner replaced proxy fops: %pd", in full_proxy_open()
453 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
458 * file will be created in the root of the debugfs filesystem.
462 * This function creates a file in debugfs with the given name that
489 …* debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
494 * file will be created in the root of the debugfs filesystem.
498 * This function creates a file in debugfs with the given name that
525 …* debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
530 * file will be created in the root of the debugfs filesystem.
534 * This function creates a file in debugfs with the given name that
562 …* debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
567 * file will be created in the root of the debugfs filesystem.
571 * This function creates a file in debugfs with the given name that
600 * debugfs_create_ulong - create a debugfs file that is used to read and write
606 * file will be created in the root of the debugfs filesystem.
610 * This function creates a file in debugfs with the given name that
620 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
652 …* debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned …
660 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
665 * file will be created in the root of the debugfs filesystem.
678 …* debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
683 * file will be created in the root of the debugfs filesystem.
696 …* debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
701 * file will be created in the root of the debugfs filesystem.
714 …* debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
719 * file will be created in the root of the debugfs filesystem.
748 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
753 * file will be created in the root of the debugfs filesystem.
783 * debugfs_create_atomic_t - create a debugfs file that is used to read and
789 * file will be created in the root of the debugfs filesystem.
866 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
871 * file will be created in the root of the debugfs filesystem.
875 * This function creates a file in debugfs with the given name that
885 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
919 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
924 * file will be created in the root of the debugfs filesystem.
928 * This function creates a file in debugfs with the given name that exports
938 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
1015 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1021 * file will be created in the root of the debugfs filesystem.
1024 * This function creates a file in debugfs with the given name that exports
1042 * sequential file or create a debugfs file that only prints a regset32.
1054 * some 32-bit hardware registers. It is meant to be used within debugfs
1104 * debugfs_create_regset32 - create a debugfs file that returns register values
1109 * file will be created in the root of the debugfs filesystem.
1114 * This function creates a file in debugfs with the given name that reports
1149 * debugfs_create_devm_seqfile - create a debugfs file that is bound to device.
1151 * @dev: device related to this debugfs file.
1152 * @name: name of the debugfs file.
1155 * file will be created in the root of the debugfs filesystem.