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 X-Spam-Level: X-Spam-Status: No, score=-8.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E91EFC433E6 for ; Tue, 1 Sep 2020 09:23:54 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id AE0B0206A5 for ; Tue, 1 Sep 2020 09:23:54 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="XXxnmgUU" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org AE0B0206A5 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:Message-ID: Subject: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=taGHvOvfrcs7bHZ1CtWxaXDAJc0vW1hHJ2gd/3cui4Y=; b=XXxnmgUU4cdF3WNr3KhgKQvGK C5bANxePXELNMQ+Bn/3mzCC3JZCVkW0C24xAwGto4DjXArpikYrwhXp8cnVW0Xyxi0j3M2BQte/z+ 3eqGGCEd2LfERJxtPmeYZSDm64rOwM0pl0PICgKBXU5Noq//ICYW1Ou1BdQYsPMNPtho+V0qYHkHm eoXEdOlNmfMtRru1heepbmBI2oQr+zB+wR2/JvMJQc4h/nY24FGEGVBMUIZfD4AAU8ArAxCOCxWIc y5N2KTv7f1thUHVlYYhY3rD+4yIUjSI/bdFKTt3MdVewkMw14cSRg3EdKNgzdJr2b5eVzzlArhMsS bNLZHPthQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kD2Uv-0002EK-Nq; Tue, 01 Sep 2020 09:22:37 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kD2SJ-0000b7-I2 for linux-arm-kernel@lists.infradead.org; Tue, 01 Sep 2020 09:19:57 +0000 Received: from gaia (unknown [46.69.195.127]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A7DF820FC3; Tue, 1 Sep 2020 09:19:51 +0000 (UTC) Date: Tue, 1 Sep 2020 10:19:49 +0100 From: Catalin Marinas To: Masahiro Yamada Subject: Re: [PATCH] arch: vdso: add vdso linker script to 'targets' instead of extra-y Message-ID: <20200901091948.GF5561@gaia> References: <20200831182239.480317-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20200831182239.480317-1-masahiroy@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200901_051955_688288_C25BC67D X-CRM114-Status: GOOD ( 11.43 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-s390@vger.kernel.org, Vasily Gorbik , Nick Hu , linux-kbuild@vger.kernel.org, Michael Ellerman , Heiko Carstens , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, Christian Borntraeger , Paul Mackerras , Greentime Hu , Benjamin Herrenschmidt , Vincent Chen , Will Deacon , linux-arm-kernel@lists.infradead.org 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 On Tue, Sep 01, 2020 at 03:22:39AM +0900, Masahiro Yamada wrote: > The vdso linker script is preprocessed on demand. > Adding it to 'targets' is enough to include the .cmd file. > > Signed-off-by: Masahiro Yamada For arm64: Acked-by: Catalin Marinas _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel