X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=test_perthreadlock.c;h=2c95590170dc63fdadcf0b493b88554582fa5aba;hb=900e541e6604a92bdf268074bb41ec6b6632d4eb;hp=3684975eebf7c85312cd3a6a2322f88af03c022c;hpb=59d5a40624428364374c306409979155beddfaac;p=urcu.git diff --git a/test_perthreadlock.c b/test_perthreadlock.c index 3684975..2c95590 100644 --- a/test_perthreadlock.c +++ b/test_perthreadlock.c @@ -20,6 +20,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#define _GNU_SOURCE #include #include #include @@ -30,6 +31,7 @@ #include #include #include +#include #include "arch.h" @@ -73,6 +75,15 @@ static volatile struct test_array test_array = { 8 }; static unsigned long duration; +/* read-side C.S. duration, in loops */ +static unsigned long rduration; + +static inline void loop_sleep(unsigned long l) +{ + while(l-- != 0) + cpu_relax(); +} + /* * returns 0 if test should end. */ @@ -132,6 +143,8 @@ void *thr_reader(void *data) for (;;) { pthread_mutex_lock(&per_thread_lock[tidx].lock); assert(test_array.a == 8); + if (unlikely(rduration)) + loop_sleep(rduration); pthread_mutex_unlock(&per_thread_lock[tidx].lock); nr_reads++; if (unlikely(!test_duration_read())) @@ -187,9 +200,13 @@ void show_usage(int argc, char **argv) printf(" [-r] [-w] (yield reader and/or writer)"); #endif printf(" [-d delay] (writer period (us))"); + printf(" [-c duration] (reader C.S. duration (in loops))"); + printf(" [-a cpu#] [-a cpu#]... (affinity)"); printf("\n"); } +cpu_set_t affinity; + int main(int argc, char **argv) { int err; @@ -197,7 +214,8 @@ int main(int argc, char **argv) void *tret; unsigned long long *count_reader, *count_writer; unsigned long long tot_reads = 0, tot_writes = 0; - int i; + int i, a; + int use_affinity = 0; if (argc < 4) { show_usage(argc, argv); @@ -223,6 +241,8 @@ int main(int argc, char **argv) return -1; } + CPU_ZERO(&affinity); + for (i = 4; i < argc; i++) { if (argv[i][0] != '-') continue; @@ -235,6 +255,23 @@ int main(int argc, char **argv) yield_active |= YIELD_WRITE; break; #endif + case 'a': + if (argc < i + 2) { + show_usage(argc, argv); + return -1; + } + a = atoi(argv[++i]); + CPU_SET(a, &affinity); + use_affinity = 1; + printf("Adding CPU %d affinity\n", a); + break; + case 'c': + if (argc < i + 2) { + show_usage(argc, argv); + return -1; + } + rduration = atoi(argv[++i]); + break; case 'd': if (argc < i + 2) { show_usage(argc, argv); @@ -248,9 +285,16 @@ int main(int argc, char **argv) printf("running test for %lu seconds, %u readers, %u writers.\n", duration, nr_readers, nr_writers); printf("Writer delay : %u us.\n", wdelay); + printf("Reader duration : %lu loops.\n", rduration); printf("thread %-6s, thread id : %lx, tid %lu\n", "main", pthread_self(), (unsigned long)gettid()); + if (use_affinity + && sched_setaffinity(0, sizeof(affinity), &affinity) < 0) { + perror("sched_setaffinity"); + exit(-1); + } + tid_reader = malloc(sizeof(*tid_reader) * nr_readers); tid_writer = malloc(sizeof(*tid_writer) * nr_writers); count_reader = malloc(sizeof(*count_reader) * nr_readers);