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=-11.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 BFC97C5519F for ; Fri, 27 Nov 2020 19:14:23 +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 6D1E0221F7 for ; Fri, 27 Nov 2020 19:14:23 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="VEWO/NjQ" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6D1E0221F7 Authentication-Results: mail.kernel.org; dmarc=fail (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:MIME-Version:References:In-Reply-To:Message-Id:Date: Subject:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=F2MGilRqMj/i392cqqsBVDFlhMlg6VyMEo8YCE5oZ68=; b=VEWO/NjQep2Nyxcw4ObGLLyIK YiNK3qWzLiIX+IKHdXcIwPmh1kPbQgNIrS8S9lfE1opqObR9P53lInAj5QDGQounMYEAIPU6dNMvo hkf0T5pzvJHUWv5GIEl0nssgIbU4WInLjiI8DgHnUkj9mvqIsN0VTOAhGgI/RuDtBHlY8YeowikdJ iELF8VoCVA2Rkve1SNbBcuX5OpWkNqgaW/Z2EVOMiBES+a0LcU5sFG8oqyX2IG/1wqmvlE1t0x0Sj 32asoYKsmyPleSvweST48o1ncpxH08qIhIfibSJSpUfvPV653MJERsxPy6IJkAC28E+wDaVp5EQmw uEQ5ZPbhQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kijB8-0002si-T5; Fri, 27 Nov 2020 19:13:10 +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 1kijAz-0002qT-DW for linux-arm-kernel@lists.infradead.org; Fri, 27 Nov 2020 19:13:02 +0000 Received: from localhost.localdomain (unknown [95.146.230.165]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D1D8A221F7; Fri, 27 Nov 2020 19:12:58 +0000 (UTC) From: Catalin Marinas To: Youling Tang , Will Deacon Subject: Re: [PATCH] arm64: vmlinux.lds.S: Drop redundant *.init.rodata.* Date: Fri, 27 Nov 2020 19:12:57 +0000 Message-Id: <160650437074.21981.17625844073240816613.b4-ty@arm.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <1605750340-910-1-git-send-email-tangyouling@loongson.cn> References: <1605750340-910-1-git-send-email-tangyouling@loongson.cn> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201127_141301_632634_2E501E42 X-CRM114-Status: GOOD ( 12.36 ) 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: Mark Rutland , linux-kernel@vger.kernel.org, Ard Biesheuvel , James Morse , Mike Rapoport , David Brazdil , Ingo Molnar , 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 Thu, 19 Nov 2020 09:45:40 +0800, Youling Tang wrote: > We currently try to emit *.init.rodata.* twice, once in INIT_DATA, and once > in the line immediately following it. As the two section definitions are > identical, the latter is redundant and can be dropped. > > This patch drops the redundant *.init.rodata.* section definition. Applied to arm64 (for-next/misc), thanks! [1/1] arm64: vmlinux.lds.S: Drop redundant *.init.rodata.* https://git.kernel.org/arm64/c/344f2db2a18a -- Catalin _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel