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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 651EBC25B48 for ; Fri, 27 Oct 2023 00:59:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=vifealvWOsPfCEj7qvPTZSYsu9Vcubo37t6+mAYeKPc=; b=WllvHmf+YW3uQq 6wiY0Xy2Z7tAeq3/y4E/Z18OmpISXCZHiUi1JMArF7cIRO1s9iAcPC95JCr0aAtSBaIUpqycy8JFC +NiSjRvPO2Bi0FauBMKEMiSVJjQzf9xUsH2v/wEKJK/eTeHg5hrL3yQPAOY+AQndZGfy0m3h0yw9K ZXczun5XU3RxcNOep5PfJFDnLpxp1oEGNr+VNqh9rp2vGr+9sMprQpfwWlbzmeXGWNk6QH8c7DV9A Vux1fhBwCjy8zAeZXvyswEfUOYGFkKtZ4cOD/Frv6SVcCLEKnG82KsYtUt6DTrMIyWOGfo3I8K5rM sOW4U3I0IwDg2GaHHKeQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qwBC5-00FNY6-12; Fri, 27 Oct 2023 00:59:21 +0000 Received: from out-188.mta1.migadu.com ([2001:41d0:203:375::bc]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1qwBC1-00FNWu-2o for linux-arm-kernel@lists.infradead.org; Fri, 27 Oct 2023 00:59:19 +0000 Date: Fri, 27 Oct 2023 00:59:05 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1698368352; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=AeRy8vuS6mrpGOBLOgfWIOKLb2ahrPwA4SS8/6tbWeg=; b=DrEUuxvAI5ctCub2sN1eN21Qzg72HY0TsBDPr1bqy3GTnsXoFfYI9bPzXhydi6npanWckZ 2vdktmxqMmE7FJkllnjnVZ5su/xzOdTDPPDsGqMrVQWA7WX3N25/0Ze9lkOKW6hG2PcaBE nHl++HiTXgzE1rrnGHguiWBvGrujEB0= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Oliver Upton To: Nina Schoetterl-Glausch Cc: kvm@vger.kernel.org, kvmarm@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-perf-users@vger.kernel.org, Mark Brown , Jing Zhang , Zenghui Yu , Suzuki K Poulose , James Morse , Marc Zyngier , Paolo Bonzini , Adrian Hunter , Ian Rogers , Namhyung Kim , Jiri Olsa , Alexander Shishkin , Mark Rutland , Arnaldo Carvalho de Melo , Ingo Molnar , Peter Zijlstra Subject: Re: [PATCH v3 3/5] KVM: selftests: Generate sysreg-defs.h and add to include path Message-ID: References: <20231011195740.3349631-1-oliver.upton@linux.dev> <20231011195740.3349631-4-oliver.upton@linux.dev> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-Migadu-Flow: FLOW_OUT X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231026_175918_070768_5A8658B5 X-CRM114-Status: GOOD ( 11.57 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Nina, Apologies, I missed this email in my inbox and happened to see it on lore. On Mon, Oct 23, 2023 at 03:53:59PM +0200, Nina Schoetterl-Glausch wrote: [...] > > +ifeq ($(ARCH),arm64) > > +arm64_tools_dir := $(top_srcdir)/tools/arch/arm64/tools/ > > +GEN_HDRS := $(top_srcdir)/tools/arch/arm64/include/generated/ > > +CFLAGS += -I$(GEN_HDRS) > > + > > +prepare: > > + $(MAKE) -C $(arm64_tools_dir) > > +else > > +prepare: > > This is a force target, all targets depending on this one will always have their recipe run, > so we'll pretty much rebuild everything. > Is this intentional? No, I just wasn't thinking about what I was doing :) I've sent out a fix for this, plan to have it resolved before sending out the PR for 6.7. [*] https://lore.kernel.org/kvmarm/20231027005439.3142015-3-oliver.upton@linux.dev/ -- Thanks, Oliver _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel