From nobody Tue Jun 23 23:41:58 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BA2B5C433F5 for ; Thu, 24 Feb 2022 09:49:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233001AbiBXJt5 (ORCPT ); Thu, 24 Feb 2022 04:49:57 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43380 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232999AbiBXJt4 (ORCPT ); Thu, 24 Feb 2022 04:49:56 -0500 X-Greylist: delayed 63 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Thu, 24 Feb 2022 01:49:25 PST Received: from esa4.hc1455-7.c3s2.iphmx.com (esa4.hc1455-7.c3s2.iphmx.com [68.232.139.117]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7E2DF15FC89 for ; Thu, 24 Feb 2022 01:49:24 -0800 (PST) IronPort-SDR: MlR9ir+ODx2HYvf/DJX649bwc9SwkmCcol268/Ikf/j5u5WczFO7hPjUXGEZpA2gJP80x3Wfr8 jr9hDwnodTydYuD1zDU0IGc16orgzUn2hhuNgZWx38zm6JAIiZNJNqs40grZhZxylSpUAVUEjt EvRWZWoeMP/X26c2rq6vaCbR8GsU0Y/TMXs9esiHNox0th7IRCkGygEZGzL1gMbLL08dSeIGCz qi8bqiiD9ZWWE7uc+G1bFuipmszAc19EUmU+iVP8febNwDivO04sOGvUHTe1O/5hXcUREDBMjx yzy+EVGCXmcr/aeas1NifpUg X-IronPort-AV: E=McAfee;i="6200,9189,10267"; a="63927949" X-IronPort-AV: E=Sophos;i="5.88,393,1635174000"; d="scan'208";a="63927949" Received: from unknown (HELO yto-r1.gw.nic.fujitsu.com) ([218.44.52.217]) by esa4.hc1455-7.c3s2.iphmx.com with ESMTP; 24 Feb 2022 18:48:20 +0900 Received: from yto-m1.gw.nic.fujitsu.com (yto-nat-yto-m1.gw.nic.fujitsu.com [192.168.83.64]) by yto-r1.gw.nic.fujitsu.com (Postfix) with ESMTP id 2935410617 for ; Thu, 24 Feb 2022 18:48:18 +0900 (JST) Received: from m3003.s.css.fujitsu.com (m3003.s.css.fujitsu.com [10.128.233.114]) by yto-m1.gw.nic.fujitsu.com (Postfix) with ESMTP id 6C6E2D0437 for ; Thu, 24 Feb 2022 18:48:16 +0900 (JST) Received: from localhost.localdomain (unknown [10.125.5.220]) by m3003.s.css.fujitsu.com (Postfix) with ESMTP id 45E6E200B431; Thu, 24 Feb 2022 18:48:16 +0900 (JST) From: Rei Yamamoto To: tglx@linutronix.de Cc: geert+renesas@glider.be, linux-kernel@vger.kernel.org, yamamoto.rei@jp.fujitsu.com Subject: [PATCH] hrtimer: Remove a warning message in hrtimer_interrupt() Date: Thu, 24 Feb 2022 18:28:48 +0900 Message-Id: <20220224092848.3755-1-yamamoto.rei@jp.fujitsu.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20211224023924.91851-1-yamamoto.rei@jp.fujitsu.com> References: <20211224023924.91851-1-yamamoto.rei@jp.fujitsu.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-TM-AS-GCONF: 00 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" It seems the warning message in hrtimer_interrupt() has no an intention. The required action for the warning message in hrtimer_interrupt()=20 is not clear. Remove this message not to confuse user. Signed-off-by: Rei Yamamoto --- kernel/time/hrtimer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/time/hrtimer.c b/kernel/time/hrtimer.c index 0ea8702eb516..4f4eb9d1f05a 100644 --- a/kernel/time/hrtimer.c +++ b/kernel/time/hrtimer.c @@ -1866,7 +1866,6 @@ void hrtimer_interrupt(struct clock_event_device *dev) else expires_next =3D ktime_add(now, delta); tick_program_event(expires_next, 1); - pr_warn_once("hrtimer: interrupt took %llu ns\n", ktime_to_ns(delta)); } =20 /* called with interrupts disabled */ --=20 2.27.0