From: compudj Date: Thu, 21 May 2009 19:46:43 +0000 (+0000) Subject: update read lock test X-Git-Tag: v0.12.20~95 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=bc918f0fc0a9949422f8536edba0033dda3f0e06;p=lttv.git update read lock test git-svn-id: http://ltt.polymtl.ca/svn@3394 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/trunk/tests/kernel/test-read-lock-speed.c b/trunk/tests/kernel/test-read-lock-speed.c index 895cee53..26c08624 100644 --- a/trunk/tests/kernel/test-read-lock-speed.c +++ b/trunk/tests/kernel/test-read-lock-speed.c @@ -62,9 +62,9 @@ static void do_testbaseline(void) printk(KERN_ALERT "test results: time for baseline\n"); printk(KERN_ALERT "number of loops: %d\n", NR_LOOPS); - printk(KERN_ALERT "total time: %llu\n", time); + printk(KERN_ALERT "total time: %llu\n", (unsigned long long)time); time = div_u64_rem(time, NR_LOOPS, &rem); - printk(KERN_ALERT "-> baseline takes %llu cycles\n", time); + printk(KERN_ALERT "-> baseline takes %llu cycles\n", (unsigned long long)time); printk(KERN_ALERT "test end\n"); } @@ -90,9 +90,9 @@ static void do_test_spinlock(void) printk(KERN_ALERT "test results: time for spinlock\n"); printk(KERN_ALERT "number of loops: %d\n", NR_LOOPS); - printk(KERN_ALERT "total time: %llu\n", time); + printk(KERN_ALERT "total time: %llu\n", (unsigned long long)time); time = div_u64_rem(time, NR_LOOPS, &rem); - printk(KERN_ALERT "-> spinlock takes %llu cycles\n", time); + printk(KERN_ALERT "-> spinlock takes %llu cycles\n", (unsigned long long)time); printk(KERN_ALERT "test end\n"); } @@ -120,9 +120,9 @@ static void do_test_read_rwlock(void) printk(KERN_ALERT "test results: time for read rwlock\n"); printk(KERN_ALERT "number of loops: %d\n", NR_LOOPS); - printk(KERN_ALERT "total time: %llu\n", time); + printk(KERN_ALERT "total time: %llu\n", (unsigned long long)time); time = div_u64_rem(time, NR_LOOPS, &rem); - printk(KERN_ALERT "-> read rwlock takes %llu cycles\n", time); + printk(KERN_ALERT "-> read rwlock takes %llu cycles\n", (unsigned long long)time); printk(KERN_ALERT "test end\n"); } @@ -148,9 +148,9 @@ static void do_test_seqlock(void) printk(KERN_ALERT "test results: time for seqlock\n"); printk(KERN_ALERT "number of loops: %d\n", NR_LOOPS); - printk(KERN_ALERT "total time: %llu\n", time); + printk(KERN_ALERT "total time: %llu\n", (unsigned long long)time); time = div_u64_rem(time, NR_LOOPS, &rem); - printk(KERN_ALERT "-> seqlock takes %llu cycles\n", time); + printk(KERN_ALERT "-> seqlock takes %llu cycles\n", (unsigned long long)time); printk(KERN_ALERT "test end\n"); } @@ -182,10 +182,10 @@ static void do_test_preempt(void) printk(KERN_ALERT "test results: time for preempt disable/enable pairs\n"); printk(KERN_ALERT "number of loops: %d\n", NR_LOOPS); - printk(KERN_ALERT "total time: %llu\n", time); + printk(KERN_ALERT "total time: %llu\n", (unsigned long long)time); time = div_u64_rem(time, NR_LOOPS, &rem); printk(KERN_ALERT "-> preempt disable/enable pair takes %llu cycles\n", - time); + (unsigned long long)time); printk(KERN_ALERT "test end\n"); }