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:
89876f2
)
ia64, sched/cputime: Fix build error if CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
author
Valentin Ilie
<
[email protected]
>
Fri, 5 Jan 2018 23:12:59 +0000
(23:12 +0000)
committer
Ingo Molnar
<
[email protected]
>
Sat, 6 Jan 2018 10:48:34 +0000
(11:48 +0100)
Remove the extra parenthesis.
This bug was introduced by:
e2339a4caa5e
: ("ia64: Convert vtime to use nsec units directly")
Signed-off-by: Valentin Ilie <
[email protected]
>
Cc: Linus Torvalds <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/ia64/kernel/time.c
patch
|
blob
|
history
diff --git
a/arch/ia64/kernel/time.c
b/arch/ia64/kernel/time.c
index c6ecb97151a25774bf75ce5a1663210db4f6bce3..9025699049ca63b3834ed917d935224009d2d7a8 100644
(file)
--- a/
arch/ia64/kernel/time.c
+++ b/
arch/ia64/kernel/time.c
@@
-88,7
+88,7
@@
void vtime_flush(struct task_struct *tsk)
}
if (ti->softirq_time) {
- delta = cycle_to_nsec(ti->softirq_time)
)
;
+ delta = cycle_to_nsec(ti->softirq_time);
account_system_index_time(tsk, delta, CPUTIME_SOFTIRQ);
}