docsrc: fix getdelays printk formats

Fix printf format type warnings (seen on alpha & ia64):

Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 6 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 7 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 8 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 9 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 12 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 13 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 16 has type '__u64'
Documentation/accounting/getdelays.c:206: warning: format '%15llu' expects type 'long long unsigned int', but argument 17 has type '__u64'
Documentation/accounting/getdelays.c:214: warning: format '%15llu' expects type 'long long unsigned int', but argument 4 has type '__u64'
Documentation/accounting/getdelays.c:214: warning: format '%15llu' expects type 'long long unsigned int', but argument 5 has type '__u64'
Documentation/accounting/getdelays.c:221: warning: format '%llu' expects type 'long long unsigned int', but argument 2 has type '__u64'
Documentation/accounting/getdelays.c:221: warning: format '%llu' expects type 'long long unsigned int', but argument 3 has type '__u64'
Documentation/accounting/getdelays.c:221: warning: format '%llu' expects type 'long long unsigned int', but argument 4 has type '__u64'
Documentation/accounting/getdelays.c:221: warning: format '%llu' expects type 'long long unsigned int', but argument 5 has type '__u64'
Documentation/accounting/getdelays.c:221: warning: format '%llu' expects type 'long long unsigned int', but argument 6 has type '__u64'
Documentation/accounting/getdelays.c:236: warning: 'cmd_type' may be used uninitialized in this function

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Balbir Singh <balbir@in.ibm.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Randy Dunlap and committed by Linus Torvalds 66659313 ffab10ec

+17 -8
+17 -8
Documentation/accounting/getdelays.c
··· 201 201 "RECLAIM %12s%15s\n" 202 202 " %15llu%15llu\n", 203 203 "count", "real total", "virtual total", "delay total", 204 - t->cpu_count, t->cpu_run_real_total, t->cpu_run_virtual_total, 205 - t->cpu_delay_total, 204 + (unsigned long long)t->cpu_count, 205 + (unsigned long long)t->cpu_run_real_total, 206 + (unsigned long long)t->cpu_run_virtual_total, 207 + (unsigned long long)t->cpu_delay_total, 206 208 "count", "delay total", 207 - t->blkio_count, t->blkio_delay_total, 208 - "count", "delay total", t->swapin_count, t->swapin_delay_total, 209 + (unsigned long long)t->blkio_count, 210 + (unsigned long long)t->blkio_delay_total, 209 211 "count", "delay total", 210 - t->freepages_count, t->freepages_delay_total); 212 + (unsigned long long)t->swapin_count, 213 + (unsigned long long)t->swapin_delay_total, 214 + "count", "delay total", 215 + (unsigned long long)t->freepages_count, 216 + (unsigned long long)t->freepages_delay_total); 211 217 } 212 218 213 219 void task_context_switch_counts(struct taskstats *t) ··· 221 215 printf("\n\nTask %15s%15s\n" 222 216 " %15llu%15llu\n", 223 217 "voluntary", "nonvoluntary", 224 - t->nvcsw, t->nivcsw); 218 + (unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw); 225 219 } 226 220 227 221 void print_cgroupstats(struct cgroupstats *c) 228 222 { 229 223 printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, " 230 - "uninterruptible %llu\n", c->nr_sleeping, c->nr_io_wait, 231 - c->nr_running, c->nr_stopped, c->nr_uninterruptible); 224 + "uninterruptible %llu\n", (unsigned long long)c->nr_sleeping, 225 + (unsigned long long)c->nr_io_wait, 226 + (unsigned long long)c->nr_running, 227 + (unsigned long long)c->nr_stopped, 228 + (unsigned long long)c->nr_uninterruptible); 232 229 } 233 230 234 231