Lines Matching full:debugfs
7 #include <linux/debugfs.h>
14 #include "debugfs.h"
21 * Create a debugfs representation of test suites:
75 /* Print KTAP header so the debugfs log can be parsed as valid KTAP. */ in debugfs_print_results()
109 * Print a usage message to the debugfs "run" file
117 seq_printf(seq, "usage: echo \"any string\" > /sys/kernel/debugfs/kunit/%s/run\n", in debugfs_print_run()
123 * The debugfs "run" file (/sys/kernel/debug/kunit/<testsuite>/run)
137 * Trigger a test suite to run by writing to the suite's "run" debugfs
173 /* If suite log already allocated, do not create new debugfs files. */ in kunit_debugfs_create_suite()
178 * Allocate logs before creating debugfs representation. in kunit_debugfs_create_suite()
199 suite->debugfs = debugfs_create_dir(suite->name, debugfs_rootdir); in kunit_debugfs_create_suite()
202 suite->debugfs, in kunit_debugfs_create_suite()
208 suite->debugfs, in kunit_debugfs_create_suite()
226 debugfs_remove_recursive(suite->debugfs); in kunit_debugfs_destroy_suite()