Lines Matching refs:t
447 struct test_driver *t = private; in test_func() local
464 t->start = get_cycles(); in test_func()
478 t->data[index].test_passed++; in test_func()
480 t->data[index].test_xfailed++; in test_func()
482 t->data[index].test_failed++; in test_func()
491 t->data[index].time = delta; in test_func()
493 t->stop = get_cycles(); in test_func()
546 struct test_driver *t = &tdriver[i]; in do_concurrent_test() local
548 t->task = kthread_run(test_func, t, "vmalloc_test/%d", i); in do_concurrent_test()
550 if (!IS_ERR(t->task)) in do_concurrent_test()
573 struct test_driver *t = &tdriver[i]; in do_concurrent_test() local
576 if (!IS_ERR(t->task)) in do_concurrent_test()
577 kthread_stop(t->task); in do_concurrent_test()
586 t->data[j].test_passed, in do_concurrent_test()
587 t->data[j].test_failed, in do_concurrent_test()
588 t->data[j].test_xfailed, in do_concurrent_test()
590 t->data[j].time); in do_concurrent_test()
594 i, t->stop - t->start); in do_concurrent_test()