From nobody Mon Sep 15 17:42:48 2025 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 7E345C46467 for ; Wed, 11 Jan 2023 09:43:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232255AbjAKJmc (ORCPT ); Wed, 11 Jan 2023 04:42:32 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43328 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238622AbjAKJls (ORCPT ); Wed, 11 Jan 2023 04:41:48 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 43B3065AA; Wed, 11 Jan 2023 01:38:17 -0800 (PST) Date: Wed, 11 Jan 2023 09:38:15 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1673429895; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=kehMZIHPNQwe/rgFXgkipzv6RmLxifL8oeDAjS4KObg=; b=umNlVrc1r7BR6PRC2/CPs7WH0THb9RSlmTdDDfbkwTSkmpObdoS0LKwHVtY2SionEIntmY aIWLvL705k25r0PoHDpcyTAkfpo2qR6Zoj2zs+Kjt9YuZ+v2RK1Mzn2COf1iS5lw+95ngC FA+X1LLaRBCz+2NkCWXar/lOPicRy992MwfGm9M8NCAcdgzl0L058Ps/OrGCRBy7h0Y3Jk Njm93lKmypTcuYKMOLPLS0ta6Yz1Cjm6yAjD9lPzRpp/tYCi9JbgWfFnZGCsMkNqnBdaEA AJRSiTPaJNAlqFa4EO4D+ZxTFZCmD1A+s1Kx09URGccPJlb/H1RGFNuDYnBAIg== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1673429895; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=kehMZIHPNQwe/rgFXgkipzv6RmLxifL8oeDAjS4KObg=; b=x5/l5UspoS/rwDESewhE/c2mxgUE01eZxNJEWqo/VdHvqluPB1Re9TVxNh/ojDpy47Nzty c1jYV86gY2guBkCA== From: "tip-bot2 for Ingo Molnar" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: sched/core] sched/cputime: Fix IA64 build error of missing arch_vtime_task_switch() prototype Cc: kernel test robot , Ingo Molnar , linux-kernel@vger.kernel.org, Nicholas Piggin , "Peter Zijlstra (Intel)" , Alexander Gordeev , x86@kernel.org MIME-Version: 1.0 Message-ID: <167342989503.4906.9427028157205316404.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the sched/core branch of tip: Commit-ID: cd9f5c3d3096e26fa128ae747f66383002001398 Gitweb: https://git.kernel.org/tip/cd9f5c3d3096e26fa128ae747f6638300= 2001398 Author: Ingo Molnar AuthorDate: Wed, 11 Jan 2023 10:25:34 +01:00 Committer: Ingo Molnar CommitterDate: Wed, 11 Jan 2023 10:31:57 +01:00 sched/cputime: Fix IA64 build error of missing arch_vtime_task_switch() pro= totype The following commit: c89970202a11 ("cputime: remove cputime_to_nsecs fallback") Removed an inclusion from , but this broke the IA64 build: arch/ia64/kernel/time.c:110:6: warning: no previous prototype for 'arch= _vtime_task_switch' [-Wmissing-prototypes] Add in the missing header to fix it. Fixes: c89970202a11 ("cputime: remove cputime_to_nsecs fallback") Reported-by: kernel test robot Signed-off-by: Ingo Molnar Cc: linux-kernel@vger.kernel.org Cc: Nicholas Piggin Cc: Peter Zijlstra (Intel) Cc: Alexander Gordeev Signed-off-by: Ingo Molnar --- arch/ia64/kernel/time.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index fa9c0ab..83ef044 100644 --- a/arch/ia64/kernel/time.c +++ b/arch/ia64/kernel/time.c @@ -25,6 +25,7 @@ #include #include =20 +#include #include #include #include