lkml.org 
[lkml]   [2012]   [Oct]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH -mmotm] kernel: fix synchro-test.c printk format warrnings
From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warnings in kernel/synchro-test.c.
Fixes warnings on i386 and on x86_64.

kernel/synchro-test.c:432:4: warning: format '%u' expects type 'unsigned int', but argument 5 has type 'long unsigned int'
kernel/synchro-test.c:437:4: warning: format '%u' expects type 'unsigned int', but argument 5 has type 'long unsigned int'
kernel/synchro-test.c:442:4: warning: format '%u' expects type 'unsigned int', but argument 5 has type 'long unsigned int'
kernel/synchro-test.c:447:4: warning: format '%u' expects type 'unsigned int', but argument 5 has type 'long unsigned int'
kernel/synchro-test.c:452:4: warning: format '%u' expects type 'unsigned int', but argument 5 has type 'long unsigned int'

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
kernel/synchro-test.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

--- mmotm-2012-1011-1614.orig/kernel/synchro-test.c
+++ mmotm-2012-1011-1614/kernel/synchro-test.c
@@ -429,27 +429,27 @@ static int __init do_tests(void)
for (loop = 0; loop < MAX_THREADS; loop++) {
if (loop < nummx) {
init_completion(&mx_comp[loop]);
- kthread_run(mutexer, (void *) loop, "Mutex%u", loop);
+ kthread_run(mutexer, (void *) loop, "Mutex%lu", loop);
}

if (loop < numsm) {
init_completion(&sm_comp[loop]);
- kthread_run(semaphorer, (void *) loop, "Sem%u", loop);
+ kthread_run(semaphorer, (void *) loop, "Sem%lu", loop);
}

if (loop < numrd) {
init_completion(&rd_comp[loop]);
- kthread_run(reader, (void *) loop, "Read%u", loop);
+ kthread_run(reader, (void *) loop, "Read%lu", loop);
}

if (loop < numwr) {
init_completion(&wr_comp[loop]);
- kthread_run(writer, (void *) loop, "Write%u", loop);
+ kthread_run(writer, (void *) loop, "Write%lu", loop);
}

if (loop < numdg) {
init_completion(&dg_comp[loop]);
- kthread_run(downgrader, (void *) loop, "Down%u", loop);
+ kthread_run(downgrader, (void *) loop, "Down%lu", loop);
}
}


\
 
 \ /
  Last update: 2012-10-15 04:01    [W:0.090 / U:0.132 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site