Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7729bebc authored by Valentin Ilie's avatar Valentin Ilie Committed by Ingo Molnar
Browse files

ia64, sched/cputime: Fix build error if CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y



Remove the extra parenthesis.

This bug was introduced by:

  e2339a4c: ("ia64: Convert vtime to use nsec units directly")

Signed-off-by: default avatarValentin Ilie <valentin.ilie@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: fenghua.yu@intel.com
Cc: linux-ia64@vger.kernel.org
Cc: tony.luck@intel.com
Link: http://lkml.kernel.org/r/1515193979-24873-1-git-send-email-valentin.ilie@gmail.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 89876f27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
	}