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>
85 * This could only happen if some debugfs user erroneously calls in __debugfs_file_get()
202 * debugfs_enter_cancellation - enter a debugfs cancellation
207 * When a debugfs file is removed it needs to wait for all active
213 * This function can be used inside a debugfs handler that may
217 * and leave the debugfs handler function as soon as possible.
328 WARN(1, "debugfs file owner did not clean up at exit: %pd", in open_proxy_open()
471 WARN(1, "debugfs file owner did not clean up at exit: %pd", in full_proxy_open_regular()
483 WARN(1, "debugfs file owner replaced proxy fops: %pd", in full_proxy_open_regular()
604 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
609 * file will be created in the root of the debugfs filesystem.
613 * This function creates a file in debugfs with the given name that
640 …* debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
645 * file will be created in the root of the debugfs filesystem.
649 * This function creates a file in debugfs with the given name that
676 …* debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
681 * file will be created in the root of the debugfs filesystem.
685 * This function creates a file in debugfs with the given name that
713 …* debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
718 * file will be created in the root of the debugfs filesystem.
722 * This function creates a file in debugfs with the given name that
751 * debugfs_create_ulong - create a debugfs file that is used to read and write
757 * file will be created in the root of the debugfs filesystem.
761 * This function creates a file in debugfs with the given name that
793 …* debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned …
801 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
806 * file will be created in the root of the debugfs filesystem.
819 …* debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
824 * file will be created in the root of the debugfs filesystem.
837 …* debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
842 * file will be created in the root of the debugfs filesystem.
855 …* debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
860 * file will be created in the root of the debugfs filesystem.
889 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
894 * file will be created in the root of the debugfs filesystem.
924 * debugfs_create_atomic_t - create a debugfs file that is used to read and
930 * file will be created in the root of the debugfs filesystem.
1006 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
1011 * file will be created in the root of the debugfs filesystem.
1015 * This function creates a file in debugfs with the given name that
1134 * debugfs_create_str - create a debugfs file that is used to read and write a string value
1139 * file will be created in the root of the debugfs filesystem.
1143 * This function creates a file in debugfs with the given name that
1195 * debugfs_create_blob - create a debugfs file that is used to read and write
1201 * file will be created in the root of the debugfs filesystem.
1205 * This function creates a file in debugfs with the given name that exports
1215 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
1291 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1297 * file will be created in the root of the debugfs filesystem.
1300 * This function creates a file in debugfs with the given name that exports
1318 * sequential file or create a debugfs file that only prints a regset32.
1330 * some 32-bit hardware registers. It is meant to be used within debugfs
1370 * debugfs_create_regset32 - create a debugfs file that returns register values
1375 * file will be created in the root of the debugfs filesystem.
1380 * This function creates a file in debugfs with the given name that reports
1415 * debugfs_create_devm_seqfile - create a debugfs file that is bound to device.
1417 * @dev: device related to this debugfs file.
1418 * @name: name of the debugfs file.
1421 * file will be created in the root of the debugfs filesystem.