[PATCH -mmotm] kernel: fix synchro-test.c printk format warrnings

From: Randy Dunlap
Date: Sun Oct 14 2012 - 21:27:19 EST


From: Randy Dunlap <rdunlap@xxxxxxxxxxxx>

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@xxxxxxxxxxxx>
---
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);
}
}

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/