From mboxrd@z Thu Jan 1 00:00:00 1970 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 7774CC433F5 for ; Mon, 21 Mar 2022 15:38:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1350350AbiCUPkE (ORCPT ); Mon, 21 Mar 2022 11:40:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56648 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346365AbiCUPj5 (ORCPT ); Mon, 21 Mar 2022 11:39:57 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 058F5255A0 for ; Mon, 21 Mar 2022 08:38:31 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 953A761124 for ; Mon, 21 Mar 2022 15:38:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9506BC340E8; Mon, 21 Mar 2022 15:38:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1647877110; bh=AAdpnVEknkWslKv2VF+ut5MhEmYpqPzuJnQ50fQubi0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=LBAxaZjSDYRLVRi3cIueBwjnryoukQNb6SDI18aHvXTt0lWlsi4m64R0fA5gZ60IO /OK6DjmXhFnK3ApBKyaFlu0c0022qHN+12ApJ6TnaZ4QUWbZexJ03iE2QUw0qDFuaq eSs7BPcZKhMaDUWnD5cL3jN9NTmLKNsIi6aFcw09LFVhBvnBFjEeVryn4NsT/0w5rm cv6hydXIA0+HDwkKXgNQUiXxsEGsNaw39cXsSkow4DWIgxhtevUsqvaVCQYy8Ifz+/ QdX+kCnZijV8whpFC6ZpyRwSbPQfjn8wxS8DQiTERti+/E9iD+64IPh2cQhqk3Q8Yh UViCMMasvXHYQ== Date: Mon, 21 Mar 2022 08:38:22 -0700 From: Nathan Chancellor To: Randy Dunlap , Ingo Molnar Cc: linux-kernel@vger.kernel.org, patches@lists.linux.dev, Russell King , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH -next] sched/headers: ARM needs asm/paravirt_api_clock.h Message-ID: References: <20220316204146.14000-1-rdunlap@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220316204146.14000-1-rdunlap@infradead.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 16, 2022 at 01:41:46PM -0700, Randy Dunlap wrote: > Add for arch/arm/. > > Fixes this build error: > > In file included from ../kernel/sched/core.c:81: > ../kernel/sched/sched.h:87:11: fatal error: asm/paravirt_api_clock.h: No such file or directory > 87 | # include > > Fixes: 4ff8f2ca6ccd ("sched/headers: Reorganize, clean up and optimize kernel/sched/sched.h dependencies") > Signed-off-by: Randy Dunlap > Cc: Ingo Molnar > Cc: Russell King > Cc: linux-arm-kernel@lists.infradead.org > Cc: patches@armlinux.org.uk Reviewed-by: Nathan Chancellor This needs to go into -tip to avoid breaking the build for ARM all{mod,yes}config. It looks like the pull has already been sent though :/ > --- > KernelVersion: linux-next-20220316 > > arch/arm/include/asm/paravirt_api_clock.h | 1 + > 1 file changed, 1 insertion(+) > > --- /dev/null > +++ linux-next-20220316/arch/arm/include/asm/paravirt_api_clock.h > @@ -0,0 +1 @@ > +#include >