Home
last modified time | relevance | path

Searched refs:test_flags (Results 1 – 9 of 9) sorted by relevance

/linux-6.12.1/samples/bpf/
Dtest_overhead_user.c175 int test_flags = ~0; in main() local
181 test_flags = atoi(argv[1]) ? : test_flags; in main()
185 if (test_flags & 0x3) { in main()
187 run_perf_test(num_cpu, test_flags); in main()
190 if (test_flags & 0xC) { in main()
197 run_perf_test(num_cpu, test_flags >> 2); in main()
202 if (test_flags & 0x30) { in main()
208 run_perf_test(num_cpu, test_flags >> 4); in main()
213 if (test_flags & 0xC0) { in main()
219 run_perf_test(num_cpu, test_flags >> 6); in main()
Dmap_perf_test_user.c71 static int test_flags = ~0; variable
79 return test_flags & TEST_BIT(t); in check_test_flags()
435 test_flags = atoi(argv[1]) ? : test_flags; in main()
/linux-6.12.1/kernel/
Drseq.c205 u32 test_flags; in rseq_warn_flags() local
209 test_flags = flags & RSEQ_CS_NO_RESTART_FLAGS; in rseq_warn_flags()
210 if (test_flags) in rseq_warn_flags()
211 pr_warn_once("Deprecated flags (%u) in %s ABI structure", test_flags, str); in rseq_warn_flags()
212 test_flags = flags & ~RSEQ_CS_NO_RESTART_FLAGS; in rseq_warn_flags()
213 if (test_flags) in rseq_warn_flags()
214 pr_warn_once("Unknown flags (%u) in %s ABI structure", test_flags, str); in rseq_warn_flags()
/linux-6.12.1/tools/testing/selftests/kvm/x86_64/
Dsev_init2_tests.c93 void test_flags(uint32_t vm_type) in test_flags() function
143 test_flags(KVM_X86_SEV_VM); in main()
145 test_flags(KVM_X86_SEV_ES_VM); in main()
/linux-6.12.1/mm/
Dgup_test.h28 __u32 test_flags; member
Dgup_test.c158 if (gup->test_flags & GUP_TEST_FLAG_DUMP_PAGES_USE_PIN) in __gup_test_ioctl()
193 put_back_pages(cmd, pages, nr_pages, gup->test_flags); in __gup_test_ioctl()
/linux-6.12.1/tools/perf/util/
Dtrace-event-parse.c179 test_flags(struct tep_format_field *prev_state_field, struct tep_print_arg *arg) in test_flags() function
207 sym = test_flags(prev_state_field, arg); in search_op()
/linux-6.12.1/tools/testing/memblock/tests/
Dcommon.h21 enum test_flags { enum
/linux-6.12.1/tools/testing/selftests/mm/
Dgup_test.c125 gup.test_flags |= GUP_TEST_FLAG_DUMP_PAGES_USE_PIN; in main()