Home
last modified time | relevance | path

Searched refs:targs (Results 1 – 7 of 7) sorted by relevance

/linux/tools/testing/selftests/kvm/
H A Dmemslot_perf_test.c899 static void help(char *name, struct test_args *targs) in help()
910 targs->nslots); in help()
912 targs->tfirst, NTESTS - 1); in help()
914 targs->tlast, NTESTS - 1); in help()
916 targs->seconds); in help()
918 targs->runs); in help()
962 struct test_args *targs) in parse_args()
971 help(argv[0], targs); in parse_args()
987 targs->nslots = atoi_paranoid(optarg); in parse_args()
988 if (targs in parse_args()
898 help(char * name,struct test_args * targs) help() argument
961 parse_args(int argc,char * argv[],struct test_args * targs) parse_args() argument
1047 test_loop(const struct test_data * data,const struct test_args * targs,struct test_result * rbestslottime,struct test_result * rbestruntime) test_loop() argument
1100 struct test_args targs = { main() local
[all...]
/linux/tools/testing/selftests/kvm/riscv/
H A Dsbi_pmu_test.c48 static struct test_args targs; variable
518 for (i = 0; i < targs.overflow_irqnum; i++) in test_pmu_events_overflow()
520 GUEST_ASSERT_EQ(vcpu_shared_irq_count, targs.overflow_irqnum); in test_pmu_events_overflow()
524 for (i = 0; i < targs.overflow_irqnum; i++) in test_pmu_events_overflow()
526 GUEST_ASSERT_EQ(vcpu_shared_irq_count, targs.overflow_irqnum); in test_pmu_events_overflow()
639 sync_global_to_guest(vm, targs); in test_vm_events_overflow()
676 targs.disabled_tests = temp_disabled_tests; in parse_args()
688 if (targs.disabled_tests & SBI_PMU_TEST_OVERFLOW) { in parse_args()
692 targs.overflow_irqnum = overflow_interrupts; in parse_args()
704 targs.disabled_tests = 0; in main()
[all …]
/linux/tools/testing/selftests/bpf/
H A Dtest_tc_tunnel.sh
/linux/drivers/acpi/numa/
H A Dhmat.c432 u32 *inits, *targs, value; in hmat_parse_locality() local
447 sizeof(*inits) * ipds + sizeof(*targs) * tpds; in hmat_parse_locality()
459 targs = inits + ipds; in hmat_parse_locality()
460 entries = (u16 *)(targs + tpds); in hmat_parse_locality()
468 inits[init], targs[targ], value, in hmat_parse_locality()
471 hmat_update_target(targs[targ], inits[init], in hmat_parse_locality()
650 u32 *inits, *targs; in hmat_initiator_perf() local
656 targs = inits + ipds; in hmat_initiator_perf()
657 entries = (u16 *)(targs + tpds); in hmat_initiator_perf()
670 if (targs[i] == target->memory_pxm) { in hmat_initiator_perf()
/linux/fs/xfs/libxfs/
H A Dxfs_alloc.c2835 struct xfs_alloc_arg targs; /* local allocation arguments */ in xfs_alloc_fix_freelist() local
2925 memset(&targs, 0, sizeof(targs)); in xfs_alloc_fix_freelist()
2928 targs.oinfo = XFS_RMAP_OINFO_SKIP_UPDATE; in xfs_alloc_fix_freelist()
2930 targs.oinfo = XFS_RMAP_OINFO_AG; in xfs_alloc_fix_freelist()
2950 1, &targs.oinfo, XFS_AG_RESV_AGFL, 0); in xfs_alloc_fix_freelist()
2955 targs.tp = tp; in xfs_alloc_fix_freelist()
2956 targs.mp = mp; in xfs_alloc_fix_freelist()
2957 targs.agbp = agbp; in xfs_alloc_fix_freelist()
2958 targs.agno = args->agno; in xfs_alloc_fix_freelist()
2959 targs.alignment = targs.minlen = targs.prod = 1; in xfs_alloc_fix_freelist()
[all …]
/linux/tools/testing/selftests/mm/
H A Duffd-unit-tests.c1019 static void uffd_poison_test(uffd_global_test_opts_t *gopts, uffd_test_args_t *targs) in uffd_poison_test() argument
1120 uffd_test_args_t *targs, in uffd_move_test_common() argument
1217 static void uffd_move_test(uffd_global_test_opts_t *gopts, uffd_test_args_t *targs) in uffd_move_test() argument
1219 uffd_move_test_common(gopts, targs, gopts->page_size, uffd_move_handle_fault); in uffd_move_test()
1222 static void uffd_move_pmd_test(uffd_global_test_opts_t *gopts, uffd_test_args_t *targs) in uffd_move_pmd_test() argument
1226 uffd_move_test_common(gopts, targs, read_pmd_pagesize(), in uffd_move_pmd_test()
1230 static void uffd_move_pmd_split_test(uffd_global_test_opts_t *gopts, uffd_test_args_t *targs) in uffd_move_pmd_split_test() argument
1234 uffd_move_test_common(gopts, targs, read_pmd_pagesize(), in uffd_move_pmd_split_test()
1365 static void uffd_mmap_changing_test(uffd_global_test_opts_t *gopts, uffd_test_args_t *targs) in uffd_mmap_changing_test() argument
/linux/tools/testing/selftests/net/
H A Dlink_netns.py77 for typ, cargs, targs, fb_dev_net in configs: