Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752867AbeAFL6S (ORCPT + 1 other); Sat, 6 Jan 2018 06:58:18 -0500 Received: from terminus.zytor.com ([65.50.211.136]:53433 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752491AbeAFL6Q (ORCPT ); Sat, 6 Jan 2018 06:58:16 -0500 Date: Sat, 6 Jan 2018 03:53:13 -0800 From: tip-bot for Valentin Ilie Message-ID: Cc: torvalds@linux-foundation.org, tglx@linutronix.de, peterz@infradead.org, linux-kernel@vger.kernel.org, valentin.ilie@gmail.com, hpa@zytor.com, mingo@kernel.org Reply-To: peterz@infradead.org, tglx@linutronix.de, torvalds@linux-foundation.org, mingo@kernel.org, hpa@zytor.com, valentin.ilie@gmail.com, linux-kernel@vger.kernel.org In-Reply-To: <1515193979-24873-1-git-send-email-valentin.ilie@gmail.com> References: <1515193979-24873-1-git-send-email-valentin.ilie@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/urgent] ia64, sched/cputime: Fix build error if CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y Git-Commit-ID: 7729bebc619307a0233c86f8585a4bf3eadc7ce4 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Commit-ID: 7729bebc619307a0233c86f8585a4bf3eadc7ce4 Gitweb: https://git.kernel.org/tip/7729bebc619307a0233c86f8585a4bf3eadc7ce4 Author: Valentin Ilie AuthorDate: Fri, 5 Jan 2018 23:12:59 +0000 Committer: Ingo Molnar CommitDate: Sat, 6 Jan 2018 11:48:34 +0100 ia64, sched/cputime: Fix build error if CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y Remove the extra parenthesis. This bug was introduced by: e2339a4caa5e: ("ia64: Convert vtime to use nsec units directly") Signed-off-by: Valentin Ilie Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner 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: Ingo Molnar --- arch/ia64/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index c6ecb97..9025699 100644 --- 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); }