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>
79 * This could only happen if some debugfs user erroneously calls in __debugfs_file_get()
175 * debugfs_enter_cancellation - enter a debugfs cancellation
180 * When a debugfs file is removed it needs to wait for all active
186 * This function can be used inside a debugfs handler that may
190 * and leave the debugfs handler function as soon as possible.
303 WARN(1, "debugfs file owner did not clean up at exit: %pd", in open_proxy_open()
469 WARN(1, "debugfs file owner did not clean up at exit: %pd", in full_proxy_open()
493 WARN(1, "debugfs file owner replaced proxy fops: %pd", in full_proxy_open()
605 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
610 * file will be created in the root of the debugfs filesystem.
614 * This function creates a file in debugfs with the given name that
641 …* debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
646 * file will be created in the root of the debugfs filesystem.
650 * This function creates a file in debugfs with the given name that
677 …* debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
682 * file will be created in the root of the debugfs filesystem.
686 * This function creates a file in debugfs with the given name that
714 …* debugfs_create_u64 - 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.
723 * This function creates a file in debugfs with the given name that
752 * debugfs_create_ulong - create a debugfs file that is used to read and write
758 * file will be created in the root of the debugfs filesystem.
762 * This function creates a file in debugfs with the given name that
794 …* debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned …
802 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
807 * file will be created in the root of the debugfs filesystem.
820 …* debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
825 * file will be created in the root of the debugfs filesystem.
838 …* debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
843 * file will be created in the root of the debugfs filesystem.
856 …* debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
861 * file will be created in the root of the debugfs filesystem.
890 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
895 * file will be created in the root of the debugfs filesystem.
925 * debugfs_create_atomic_t - create a debugfs file that is used to read and
931 * file will be created in the root of the debugfs filesystem.
1007 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
1012 * file will be created in the root of the debugfs filesystem.
1016 * This function creates a file in debugfs with the given name that
1135 * debugfs_create_str - create a debugfs file that is used to read and write a string value
1140 * file will be created in the root of the debugfs filesystem.
1144 * This function creates a file in debugfs with the given name that
1196 * debugfs_create_blob - create a debugfs file that is used to read and write
1202 * file will be created in the root of the debugfs filesystem.
1206 * This function creates a file in debugfs with the given name that exports
1216 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
1292 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1298 * file will be created in the root of the debugfs filesystem.
1301 * This function creates a file in debugfs with the given name that exports
1319 * sequential file or create a debugfs file that only prints a regset32.
1331 * some 32-bit hardware registers. It is meant to be used within debugfs
1371 * debugfs_create_regset32 - create a debugfs file that returns register values
1376 * file will be created in the root of the debugfs filesystem.
1381 * This function creates a file in debugfs with the given name that reports
1416 * debugfs_create_devm_seqfile - create a debugfs file that is bound to device.
1418 * @dev: device related to this debugfs file.
1419 * @name: name of the debugfs file.
1422 * file will be created in the root of the debugfs filesystem.