projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b7f071
)
Documentation: fix getdelays.c printf bug
author
Michael Neuling
<
[email protected]
>
Wed, 22 Aug 2007 23:31:42 +0000
(09:31 +1000)
committer
Linus Torvalds
<
[email protected]
>
Thu, 23 Aug 2007 02:52:44 +0000
(19:52 -0700)
Commit
b663a79c191508f27cd885224b592a878c0ba0f6
("taskstats: add
context-switch counters") incorrectly removed a comma from a printf
statement. This causes corruption in the output printing or a seg
fault.
Signed-off-by: Michael Neuling <
[email protected]
>
Acked-by: Balbir Singh <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
Documentation/accounting/getdelays.c
patch
|
blob
|
history
diff --git
a/Documentation/accounting/getdelays.c
b/Documentation/accounting/getdelays.c
index 24c5aade89987998260f956bfc16dacfe3d48841..cbee3a27f76889f04e7615caae54e8a867f39f5c 100644
(file)
--- a/
Documentation/accounting/getdelays.c
+++ b/
Documentation/accounting/getdelays.c
@@
-196,7
+196,7
@@
void print_delayacct(struct taskstats *t)
"IO %15s%15s\n"
" %15llu%15llu\n"
"MEM %15s%15s\n"
- " %15llu%15llu\n"
+ " %15llu%15llu\n"
,
"count", "real total", "virtual total", "delay total",
t->cpu_count, t->cpu_run_real_total, t->cpu_run_virtual_total,
t->cpu_delay_total,