for a in test_urcu test_urcu_mb test_qsbr test_rwlock test_perthreadlock \
test_mutex; do
- echo Executing $a
./${a} $*
done
+
+
+#Vary update fraction
+#x: vary update fraction from 0 to 0.0001
+ #fix number of readers, vary delay between updates
+#y: ops/s
+
+echo Execution update fraction test
+
+
+#Test scalability :
+# x: vary number of readers from 0 to num cpus
+# y: ops/s
+# 0 writer.
+
+echo Executing scalability test
+
+# x: Vary reader C.S. length from 0 to 10us
+# y: ops/s
+# 8 readers
+# 0 writers
+
+echo Executing reader C.S. length test
+
+
+
+
cpu_relax();
}
+static int verbose_mode;
+
+#define printf_verbose(fmt, args...) \
+ do { \
+ if (verbose_mode) \
+ printf(fmt, args); \
+ } while (0)
+
/*
* returns 0 if test should end.
*/
{
unsigned long tidx = (unsigned long)data;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
while (!test_go)
{
unsigned long wtidx = (unsigned long)data;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
while (!test_go)
usleep(wdelay);
}
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
tot_nr_writes[wtidx] = nr_writes;
return ((void*)2);
#endif
printf(" [-d delay] (writer period (us))");
printf(" [-c duration] (reader C.S. duration (in loops))");
+ printf(" [-v] (verbose output)");
printf(" [-a cpu#] [-a cpu#]... (affinity)");
printf("\n");
}
a = atoi(argv[++i]);
CPU_SET(a, &affinity);
use_affinity = 1;
- printf("Adding CPU %d affinity\n", a);
+ printf_verbose("Adding CPU %d affinity\n", a);
break;
case 'c':
if (argc < i + 2) {
}
wdelay = atoi(argv[++i]);
break;
+ case 'v':
+ verbose_mode = 1;
+ break;
}
}
- printf("running test for %lu seconds, %u readers, %u writers.\n",
+ printf_verbose("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",
+ printf_verbose("Writer delay : %u us.\n", wdelay);
+ printf_verbose("Reader duration : %lu loops.\n", rduration);
+ printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
"main", pthread_self(), (unsigned long)gettid());
if (use_affinity
exit(1);
tot_writes += tot_nr_writes[i];
}
-
- printf("total number of reads : %llu, writes %llu\n", tot_reads,
+
+ printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
tot_writes);
+ printf("SUMMARY %s testdur %lu nr_readers %u rdur %lu nr_writers %u "
+ "wdelay %u nr_reads %llu nr_writes %llu nr_ops %llu\n",
+ argv[0], duration, nr_readers, rduration,
+ nr_writers, wdelay, tot_reads, tot_writes,
+ tot_reads + tot_writes);
+
free(tid_reader);
free(tid_writer);
free(count_reader);
cpu_relax();
}
+static int verbose_mode;
+
+#define printf_verbose(fmt, args...) \
+ do { \
+ if (verbose_mode) \
+ printf(fmt, args); \
+ } while (0)
+
/*
* returns 0 if test should end.
*/
{
unsigned long tidx = (unsigned long)data;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
while (!test_go)
unsigned long wtidx = (unsigned long)data;
long tidx;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
while (!test_go)
usleep(wdelay);
}
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
tot_nr_writes[wtidx] = nr_writes;
return ((void*)2);
#endif
printf(" [-d delay] (writer period (us))");
printf(" [-c duration] (reader C.S. duration (in loops))");
+ printf(" [-v] (verbose output)");
printf(" [-a cpu#] [-a cpu#]... (affinity)");
printf("\n");
}
a = atoi(argv[++i]);
CPU_SET(a, &affinity);
use_affinity = 1;
- printf("Adding CPU %d affinity\n", a);
+ printf_verbose("Adding CPU %d affinity\n", a);
break;
case 'c':
if (argc < i + 2) {
}
wdelay = atoi(argv[++i]);
break;
+ case 'v':
+ verbose_mode = 1;
+ break;
}
}
- printf("running test for %lu seconds, %u readers, %u writers.\n",
+ printf_verbose("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",
+ printf_verbose("Writer delay : %u us.\n", wdelay);
+ printf_verbose("Reader duration : %lu loops.\n", rduration);
+ printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
"main", pthread_self(), (unsigned long)gettid());
if (use_affinity
exit(1);
tot_writes += tot_nr_writes[i];
}
-
- printf("total number of reads : %llu, writes %llu\n", tot_reads,
+
+ printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
tot_writes);
+ printf("SUMMARY %s testdur %lu nr_readers %u rdur %lu nr_writers %u "
+ "wdelay %u nr_reads %llu nr_writes %llu nr_ops %llu\n",
+ argv[0], duration, nr_readers, rduration,
+ nr_writers, wdelay, tot_reads, tot_writes,
+ tot_reads + tot_writes);
+
free(tid_reader);
free(tid_writer);
free(count_reader);
cpu_relax();
}
+static int verbose_mode;
+
+#define printf_verbose(fmt, args...) \
+ do { \
+ if (verbose_mode) \
+ printf(fmt, args); \
+ } while (0)
+
/*
* returns 0 if test should end.
*/
unsigned long long *count = _count;
struct test_array *local_ptr;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
rcu_register_thread();
rcu_unregister_thread();
*count = nr_reads;
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
return ((void*)1);
unsigned long long *count = _count;
struct test_array *new, *old;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
while (!test_go)
usleep(wdelay);
}
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
*count = nr_writes;
return ((void*)2);
#endif
printf(" [-d delay] (writer period (us))");
printf(" [-c duration] (reader C.S. duration (in loops))");
+ printf(" [-v] (verbose output)");
printf(" [-a cpu#] [-a cpu#]... (affinity)");
printf("\n");
}
a = atoi(argv[++i]);
CPU_SET(a, &affinity);
use_affinity = 1;
- printf("Adding CPU %d affinity\n", a);
+ printf_verbose("Adding CPU %d affinity\n", a);
break;
case 'c':
if (argc < i + 2) {
}
wdelay = atoi(argv[++i]);
break;
+ case 'v':
+ verbose_mode = 1;
+ break;
}
}
- printf("running test for %lu seconds, %u readers, %u writers.\n",
+ printf_verbose("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",
+ printf_verbose("Writer delay : %u us.\n", wdelay);
+ printf_verbose("Reader duration : %lu loops.\n", rduration);
+ printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
"main", pthread_self(), (unsigned long)gettid());
if (use_affinity
tot_writes += count_writer[i];
}
- printf("total number of reads : %llu, writes %llu\n", tot_reads,
+ printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
tot_writes);
+ printf("SUMMARY %s testdur %lu nr_readers %u rdur %lu nr_writers %u "
+ "wdelay %u nr_reads %llu nr_writes %llu nr_ops %llu\n",
+ argv[0], duration, nr_readers, rduration,
+ nr_writers, wdelay, tot_reads, tot_writes,
+ tot_reads + tot_writes);
test_array_free(test_rcu_pointer);
free(test_array);
free(tid_reader);
cpu_relax();
}
+static int verbose_mode;
+
+#define printf_verbose(fmt, args...) \
+ do { \
+ if (verbose_mode) \
+ printf(fmt, args); \
+ } while (0)
+
/*
* returns 0 if test should end.
*/
{
unsigned long long *count = _count;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
while (!test_go)
}
*count = nr_reads;
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
return ((void*)1);
{
unsigned long long *count = _count;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
while (!test_go)
usleep(wdelay);
}
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
*count = nr_writes;
return ((void*)2);
#endif
printf(" [-d delay] (writer period (us))");
printf(" [-c duration] (reader C.S. duration (in loops))");
+ printf(" [-v] (verbose output)");
printf(" [-a cpu#] [-a cpu#]... (affinity)");
printf("\n");
}
a = atoi(argv[++i]);
CPU_SET(a, &affinity);
use_affinity = 1;
- printf("Adding CPU %d affinity\n", a);
+ printf_verbose("Adding CPU %d affinity\n", a);
break;
case 'c':
if (argc < i + 2) {
}
wdelay = atoi(argv[++i]);
break;
+ case 'v':
+ verbose_mode = 1;
+ break;
}
}
- printf("running test for %lu seconds, %u readers, %u writers.\n",
+ printf_verbose("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",
+ printf_verbose("Writer delay : %u us.\n", wdelay);
+ printf_verbose("Reader duration : %lu loops.\n", rduration);
+ printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
"main", pthread_self(), (unsigned long)gettid());
if (use_affinity
&& sched_setaffinity(0, sizeof(affinity), &affinity) < 0) {
exit(1);
tot_writes += count_writer[i];
}
-
- printf("total number of reads : %llu, writes %llu\n", tot_reads,
+
+ printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
tot_writes);
+ printf("SUMMARY %s testdur %lu nr_readers %u rdur %lu nr_writers %u "
+ "wdelay %u nr_reads %llu nr_writes %llu nr_ops %llu\n",
+ argv[0], duration, nr_readers, rduration,
+ nr_writers, wdelay, tot_reads, tot_writes,
+ tot_reads + tot_writes);
+
free(tid_reader);
free(tid_writer);
free(count_reader);
cpu_relax();
}
+static int verbose_mode;
+
+#define printf_verbose(fmt, args...) \
+ do { \
+ if (verbose_mode) \
+ printf(fmt, args); \
+ } while (0)
+
/*
* returns 0 if test should end.
*/
unsigned long long *count = _count;
struct test_array *local_ptr;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
rcu_register_thread();
rcu_unregister_thread();
*count = nr_reads;
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"reader", pthread_self(), (unsigned long)gettid());
return ((void*)1);
unsigned long long *count = _count;
struct test_array *new, *old;
- printf("thread_begin %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
while (!test_go)
usleep(wdelay);
}
- printf("thread_end %s, thread id : %lx, tid %lu\n",
+ printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
"writer", pthread_self(), (unsigned long)gettid());
*count = nr_writes;
return ((void*)2);
#endif
printf(" [-d delay] (writer period (us))");
printf(" [-c duration] (reader C.S. duration (in loops))");
+ printf(" [-v] (verbose output)");
printf(" [-a cpu#] [-a cpu#]... (affinity)");
printf("\n");
}
a = atoi(argv[++i]);
CPU_SET(a, &affinity);
use_affinity = 1;
- printf("Adding CPU %d affinity\n", a);
+ printf_verbose("Adding CPU %d affinity\n", a);
break;
case 'c':
if (argc < i + 2) {
}
wdelay = atoi(argv[++i]);
break;
+ case 'v':
+ verbose_mode = 1;
+ break;
}
}
- printf("running test for %lu seconds, %u readers, %u writers.\n",
+ printf_verbose("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",
+ printf_verbose("Writer delay : %u us.\n", wdelay);
+ printf_verbose("Reader duration : %lu loops.\n", rduration);
+ printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
"main", pthread_self(), (unsigned long)gettid());
if (use_affinity
tot_writes += count_writer[i];
}
- printf("total number of reads : %llu, writes %llu\n", tot_reads,
+ printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
tot_writes);
+ printf("SUMMARY %s testdur %lu nr_readers %u rdur %lu nr_writers %u "
+ "wdelay %u nr_reads %llu nr_writes %llu nr_ops %llu\n",
+ argv[0], duration, nr_readers, rduration,
+ nr_writers, wdelay, tot_reads, tot_writes,
+ tot_reads + tot_writes);
test_array_free(test_rcu_pointer);
free(test_array);
free(tid_reader);