Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751316AbdGQCbS (ORCPT ); Sun, 16 Jul 2017 22:31:18 -0400 Received: from mail-wm0-f67.google.com ([74.125.82.67]:36586 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751229AbdGQCbR (ORCPT ); Sun, 16 Jul 2017 22:31:17 -0400 Date: Mon, 17 Jul 2017 04:31:14 +0200 From: Frederic Weisbecker To: riel@redhat.com, peterz@infradead.org, wanpeng.li@hotmail.com, torvalds@linux-foundation.org, xiaolong.ye@intel.com, mingo@kernel.org, tglx@linutronix.de, hpa@zytor.com, lcapitulino@redhat.com, linux-kernel@vger.kernel.org Cc: linux-tip-commits@vger.kernel.org Subject: Re: [tip:sched/urgent] sched/cputime: Don't use smp_processor_id() in preemptible context Message-ID: <20170717023112.GA10020@lerouge> References: <1499586028-7402-1-git-send-email-wanpeng.li@hotmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1990 Lines: 51 On Fri, Jul 14, 2017 at 02:10:14AM -0700, tip-bot for Wanpeng Li wrote: > Commit-ID: 0e4097c3354e2f5a5ad8affd9dc7f7f7d00bb6b9 > Gitweb: http://git.kernel.org/tip/0e4097c3354e2f5a5ad8affd9dc7f7f7d00bb6b9 > Author: Wanpeng Li > AuthorDate: Sun, 9 Jul 2017 00:40:28 -0700 > Committer: Ingo Molnar > CommitDate: Fri, 14 Jul 2017 10:27:15 +0200 > > sched/cputime: Don't use smp_processor_id() in preemptible context > > Recent kernels trigger this warning: > > BUG: using smp_processor_id() in preemptible [00000000] code: 99-trinity/181 > caller is debug_smp_processor_id+0x17/0x19 > CPU: 0 PID: 181 Comm: 99-trinity Not tainted 4.12.0-01059-g2a42eb9 #1 > Call Trace: > dump_stack+0x82/0xb8 > check_preemption_disabled() > debug_smp_processor_id() > vtime_delta() > task_cputime() > thread_group_cputime() > thread_group_cputime_adjusted() > wait_consider_task() > do_wait() > SYSC_wait4() > do_syscall_64() > entry_SYSCALL64_slow_path() > > As Frederic pointed out: > > | Although those sched_clock_cpu() things seem to only matter when the > | sched_clock() is unstable. And that stability is a condition for nohz_full > | to work anyway. So probably sched_clock() alone would be enough. > > This patch fixes it by replacing sched_clock_cpu() with sched_clock() to > avoid calling smp_processor_id() in a preemptible context. > > Reported-by: Xiaolong Ye > Signed-off-by: Wanpeng Li > Cc: Frederic Weisbecker > Cc: Linus Torvalds > Cc: Luiz Capitulino > Cc: Peter Zijlstra > Cc: Rik van Riel > Cc: Thomas Gleixner > Link: http://lkml.kernel.org/r/1499586028-7402-1-git-send-email-wanpeng.li@hotmail.com > [ Prettified the changelog. ] > Signed-off-by: Ingo Molnar Thanks! The patch looks good!