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>
189 WARN(1, "debugfs file owner did not clean up at exit: %pd", in open_proxy_open()
326 WARN(1, "debugfs file owner did not clean up at exit: %pd", in full_proxy_open()
347 WARN(1, "debugfs file owner replaced proxy fops: %pd", in full_proxy_open()
429 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
434 * file will be created in the root of the debugfs filesystem.
438 * This function creates a file in debugfs with the given name that
465 …* debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
470 * file will be created in the root of the debugfs filesystem.
474 * This function creates a file in debugfs with the given name that
501 …* debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
506 * file will be created in the root of the debugfs filesystem.
510 * This function creates a file in debugfs with the given name that
538 …* debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
543 * file will be created in the root of the debugfs filesystem.
547 * This function creates a file in debugfs with the given name that
576 * debugfs_create_ulong - create a debugfs file that is used to read and write
582 * file will be created in the root of the debugfs filesystem.
586 * This function creates a file in debugfs with the given name that
618 …* debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned …
626 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
631 * file will be created in the root of the debugfs filesystem.
644 …* debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
649 * file will be created in the root of the debugfs filesystem.
662 …* debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
667 * file will be created in the root of the debugfs filesystem.
680 …* debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
685 * file will be created in the root of the debugfs filesystem.
714 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
719 * file will be created in the root of the debugfs filesystem.
749 * debugfs_create_atomic_t - create a debugfs file that is used to read and
755 * file will be created in the root of the debugfs filesystem.
831 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
836 * file will be created in the root of the debugfs filesystem.
840 * This function creates a file in debugfs with the given name that
914 * debugfs_create_str - create a debugfs file that is used to read and write a string value
919 * file will be created in the root of the debugfs filesystem.
923 * This function creates a file in debugfs with the given name that
933 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
966 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
972 * file will be created in the root of the debugfs filesystem.
976 * This function creates a file in debugfs with the given name that exports
986 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
1063 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1069 * file will be created in the root of the debugfs filesystem.
1072 * This function creates a file in debugfs with the given name that exports
1090 * sequential file or create a debugfs file that only prints a regset32.
1102 * some 32-bit hardware registers. It is meant to be used within debugfs
1142 * debugfs_create_regset32 - create a debugfs file that returns register values
1147 * file will be created in the root of the debugfs filesystem.
1152 * This function creates a file in debugfs with the given name that reports
1187 * debugfs_create_devm_seqfile - create a debugfs file that is bound to device.
1189 * @dev: device related to this debugfs file.
1190 * @name: name of the debugfs file.
1193 * file will be created in the root of the debugfs filesystem.