• 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
642 …* debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned …
650 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
655 * file will be created in the root of the debugfs filesystem.
668 …* debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
673 * file will be created in the root of the debugfs filesystem.
686 …* debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
691 * file will be created in the root of the debugfs filesystem.
704 …* debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
709 * file will be created in the root of the debugfs filesystem.
738 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
743 * file will be created in the root of the debugfs filesystem.
773 * debugfs_create_atomic_t - create a debugfs file that is used to read and
779 * file will be created in the root of the debugfs filesystem.
855 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
860 * file will be created in the root of the debugfs filesystem.
864 * This function creates a file in debugfs with the given name that
983 * debugfs_create_str - create a debugfs file that is used to read and write a string value
988 * file will be created in the root of the debugfs filesystem.
992 * This function creates a file in debugfs with the given name that
1026 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
1032 * file will be created in the root of the debugfs filesystem.
1036 * This function creates a file in debugfs with the given name that exports
1046 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
1123 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1129 * file will be created in the root of the debugfs filesystem.
1132 * This function creates a file in debugfs with the given name that exports
1150 * sequential file or create a debugfs file that only prints a regset32.
1162 * some 32-bit hardware registers. It is meant to be used within debugfs
1202 * debugfs_create_regset32 - create a debugfs file that returns register values
1207 * file will be created in the root of the debugfs filesystem.
1212 * This function creates a file in debugfs with the given name that reports
1247 * debugfs_create_devm_seqfile - create a debugfs file that is bound to device.
1249 * @dev: device related to this debugfs file.
1250 * @name: name of the debugfs file.
1253 * file will be created in the root of the debugfs filesystem.