Symbol: thread_args
tools/testing/selftests/drivers/ntsync/ntsync.c
1038
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
1044
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
1057
EXPECT_EQ(-1, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
1058
EXPECT_EQ(ETIMEDOUT, thread_args.err);
tools/testing/selftests/drivers/ntsync/ntsync.c
1069
struct wait_args thread_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
1124
thread_args.fd = fd;
tools/testing/selftests/drivers/ntsync/ntsync.c
1125
thread_args.args = &wait_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
1126
thread_args.request = NTSYNC_IOC_WAIT_ANY;
tools/testing/selftests/drivers/ntsync/ntsync.c
1127
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
1138
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
1179
struct wait_args thread_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
1221
thread_args.fd = fd;
tools/testing/selftests/drivers/ntsync/ntsync.c
1222
thread_args.args = &wait_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
1223
thread_args.request = NTSYNC_IOC_WAIT_ALL;
tools/testing/selftests/drivers/ntsync/ntsync.c
1224
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
1235
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
752
struct wait_args thread_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
777
thread_args.fd = fd;
tools/testing/selftests/drivers/ntsync/ntsync.c
778
thread_args.args = &wait_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
779
thread_args.request = NTSYNC_IOC_WAIT_ANY;
tools/testing/selftests/drivers/ntsync/ntsync.c
780
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
794
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
806
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
826
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
839
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
852
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
856
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
869
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
880
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
893
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
901
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
914
EXPECT_EQ(0, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
921
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/drivers/ntsync/ntsync.c
932
EXPECT_EQ(-1, thread_args.ret);
tools/testing/selftests/drivers/ntsync/ntsync.c
933
EXPECT_EQ(ETIMEDOUT, thread_args.err);
tools/testing/selftests/drivers/ntsync/ntsync.c
945
struct wait_args thread_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
977
thread_args.fd = fd;
tools/testing/selftests/drivers/ntsync/ntsync.c
978
thread_args.args = &wait_args;
tools/testing/selftests/drivers/ntsync/ntsync.c
979
thread_args.request = NTSYNC_IOC_WAIT_ALL;
tools/testing/selftests/drivers/ntsync/ntsync.c
980
ret = pthread_create(&thread, NULL, wait_thread, &thread_args);
tools/testing/selftests/futex/functional/futex_numa.c
111
struct thread_args *args = _arg;
tools/testing/selftests/futex/functional/futex_numa.c
143
struct thread_args *args = _arg;
tools/testing/selftests/futex/functional/futex_numa.c
164
struct thread_args *tas[512], *cas[512];
tools/testing/selftests/futex/functional/futex_numa.c
195
struct thread_args *args = calloc(1, sizeof(*args));
tools/testing/selftests/futex/functional/futex_numa.c
216
struct thread_args *args = calloc(1, sizeof(*args));
tools/testing/selftests/futex/functional/futex_numa.c
241
struct thread_args *args = tas[t];
tools/testing/selftests/futex/functional/futex_numa.c
252
struct thread_args *args = cas[t];
tools/testing/selftests/futex/functional/futex_numa_mpol.c
115
if (err_value && thread_args[i].result != -1) {
tools/testing/selftests/futex/functional/futex_numa_mpol.c
117
i, thread_args[i].result);
tools/testing/selftests/futex/functional/futex_numa_mpol.c
120
if (!err_value && thread_args[i].result != 0) {
tools/testing/selftests/futex/functional/futex_numa_mpol.c
121
ksft_print_msg("Thread %d failed (%d)\n", i, thread_args[i].result);
tools/testing/selftests/futex/functional/futex_numa_mpol.c
34
static struct thread_args thread_args[MAX_THREADS];
tools/testing/selftests/futex/functional/futex_numa_mpol.c
46
struct thread_args *args = arg;
tools/testing/selftests/futex/functional/futex_numa_mpol.c
60
thread_args[i].futex_ptr = futex_ptr;
tools/testing/selftests/futex/functional/futex_numa_mpol.c
61
thread_args[i].flags = FUTEX2_SIZE_U32 | FUTEX_PRIVATE_FLAG | FUTEX2_NUMA;
tools/testing/selftests/futex/functional/futex_numa_mpol.c
62
thread_args[i].result = 0;
tools/testing/selftests/futex/functional/futex_numa_mpol.c
63
ret = pthread_create(&threads[i], NULL, thread_lock_fn, &thread_args[i]);
tools/testing/selftests/net/netfilter/udpclash.c
37
const struct thread_args *args = varg;
tools/testing/selftests/net/netfilter/udpclash.c
54
struct thread_args thread_args = {
tools/testing/selftests/net/netfilter/udpclash.c
68
int err = pthread_create(&tid[i], NULL, &thread_main, &thread_args);
tools/testing/selftests/rseq/param_test.c
1398
struct test_membarrier_thread_args thread_args;
tools/testing/selftests/rseq/param_test.c
1408
thread_args.stop = 0;
tools/testing/selftests/rseq/param_test.c
1409
thread_args.percpu_list_ptr = 0;
tools/testing/selftests/rseq/param_test.c
1411
test_membarrier_manager_thread, &thread_args);
tools/testing/selftests/rseq/param_test.c
1420
test_membarrier_worker_thread, &thread_args);
tools/testing/selftests/rseq/param_test.c
1438
__atomic_store_n(&thread_args.stop, 1, __ATOMIC_RELEASE);
tools/testing/selftests/timens/clock_nanosleep.c
34
struct thread_args *args = _args;
tools/testing/selftests/timens/clock_nanosleep.c
44
struct thread_args args = { .now = &now, .rem = &rem, .clockid = clockid};
tools/testing/selftests/timens/vfork_exec.c
29
struct thread_args *args = _args;
tools/testing/selftests/timens/vfork_exec.c
46
struct thread_args args = {
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
126
&self->thread_args[i]);
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
130
struct thread_args *args = &self->thread_args[i];
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
28
struct thread_args *thread_args;
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
49
self->thread_args = calloc(nr_devices, sizeof(self->thread_args[0]));
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
54
self->thread_args[i].iommu = self->iommu;
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
55
self->thread_args[i].barrier = &self->barrier;
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
56
self->thread_args[i].device_index = i;
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
64
free(self->thread_args);
tools/testing/selftests/vfio/vfio_pci_device_init_perf_test.c
99
struct thread_args *args = __args;