Received: by 2002:a05:6a10:2785:0:0:0:0 with SMTP id ia5csp1006611pxb; Sat, 9 Jan 2021 04:30:49 -0800 (PST) X-Google-Smtp-Source: ABdhPJz5emEf7fl3psRG/PPANUWsAGidUCCapQ8wzg+K6l9TL5/9YsYoDaaxBvN0FX4ZFf6DOZG2 X-Received: by 2002:a17:906:8151:: with SMTP id z17mr5602423ejw.48.1610195448972; Sat, 09 Jan 2021 04:30:48 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1610195448; cv=none; d=google.com; s=arc-20160816; b=K70cFstFt+j/nvfvkiRSt3gUJZgcNmJw0Rz5tutvndm8BqrnD+7wyq8EyQ6vjy0uxO PQHG5JYgg8+iyqtqPNMT5Icq+YpZcs5StOpJFeXWAa1yGwdII0gWutzkrgMmBvii6q6i npdXk/VbPKac7x05/VGF6NIrWeByewEKzrYlWRIXmEPBR0VRy6mGg+RWWigQpSGwzWPJ oW3Lquxk+nNEK8mnk+VSHcqjAqhmupiVEcePb/+OTQebMZi7OpZTW4Qjph2kKEHEhrLK oZ2/M4uZayFMz22oizEwGLfqzOzLUwLOtOOFuddbZnouPY/WExFAQvE98PkhbDs5ylM6 K6SQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=/wBXLmqL9m3/J8jDIVeA2FNn7uYhm7C9xziCBOg5JO8=; b=a7R+WUCjhwoBQID2rKNmm0h8k/SHRsszB8PhB1WZsMsqh07GAYhhiXYdR6LQ2mkOs2 U/Sv6e+aPh4IFmu1kROznz+i0NCfxL3aqHC0tjiTh7v+IlzwlQqkmrAf4NSMPW2pEKQb DMQaGy4cImaGfdAv+SbMrz3re9EE/31OR6havonhT6jIWOTFdh5qvjK7Am2JJGKJ2GOc PlSNEBKnx/mm4pnrmFKiZ7s6+6i01qO5igURZW0l3n9KlKAdFz1+Siqhxqukmc99vhcH dSF+JfFYyW/baCJdrXDw0fE0Q3gsonU6tjSRpG2sL6md5psuOPtFeOdlLL1OzZiHVg+O Gpaw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o7si673622eja.635.2021.01.09.04.30.10; Sat, 09 Jan 2021 04:30:48 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726205AbhAIM2d (ORCPT + 99 others); Sat, 9 Jan 2021 07:28:33 -0500 Received: from elvis.franken.de ([193.175.24.41]:38220 "EHLO elvis.franken.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725896AbhAIM2d (ORCPT ); Sat, 9 Jan 2021 07:28:33 -0500 Received: from uucp (helo=alpha) by elvis.franken.de with local-bsmtp (Exim 3.36 #1) id 1kyDLP-0005En-00; Sat, 09 Jan 2021 13:27:47 +0100 Received: by alpha.franken.de (Postfix, from userid 1000) id 492FAC0880; Sat, 9 Jan 2021 12:12:59 +0100 (CET) Date: Sat, 9 Jan 2021 12:12:59 +0100 From: Thomas Bogendoerfer To: Alexander Lobakin Cc: Arnd Bergmann , Kees Cook , Nathan Chancellor , Nick Desaulniers , Fangrui Song , Huacai Chen , Pei Huang , Jiaxun Yang , Sami Tolvanen , Ingo Molnar , Ralf Baechle , Corey Minyard , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, stable@vger.kernel.org, clang-built-linux@googlegroups.com Subject: Re: [PATCH v4 mips-next 0/7] MIPS: vmlinux.lds.S sections fixes & cleanup Message-ID: <20210109111259.GA4213@alpha.franken.de> References: <20210107123331.354075-1-alobakin@pm.me> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210107123331.354075-1-alobakin@pm.me> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 07, 2021 at 12:33:38PM +0000, Alexander Lobakin wrote: > This series hunts the problems discovered after manual enabling of > ARCH_WANT_LD_ORPHAN_WARN. Notably: > - adds the missing PAGE_ALIGNED_DATA() section affecting VDSO > placement (marked for stable); > - properly stops .eh_frame section generation. > > Compile and runtime tested on MIPS32R2 CPS board with no issues > using two different toolkits: > - Binutils 2.35.1, GCC 10.2.0; > - LLVM stack 11.0.0. > > Since v3 [2]: > - fix the third patch as GNU stack emits .rel.dyn into VDSO for > some reason if .cfi_sections is specified. > > Since v2 [1]: > - stop discarding .eh_frame and just prevent it from generating > (Kees); > - drop redundant sections assertions (Fangrui); > - place GOT table in .text instead of asserting as it's not empty > when building with LLVM (Nathan); > - catch compound literals in generic definitions when building with > LD_DEAD_CODE_DATA_ELIMINATION (Kees); > - collect two Reviewed-bys (Kees). > > Since v1 [0]: > - catch .got entries too as LLD may produce it (Nathan); > - check for unwanted sections to be zero-sized instead of > discarding (Fangrui). > > [0] https://lore.kernel.org/linux-mips/20210104121729.46981-1-alobakin@pm.me > [1] https://lore.kernel.org/linux-mips/20210106200713.31840-1-alobakin@pm.me > [2] https://lore.kernel.org/linux-mips/20210107115120.281008-1-alobakin@pm.me > > Alexander Lobakin (7): > MIPS: vmlinux.lds.S: add missing PAGE_ALIGNED_DATA() section > MIPS: vmlinux.lds.S: add ".gnu.attributes" to DISCARDS > MIPS: properly stop .eh_frame generation > MIPS: vmlinux.lds.S: catch bad .rel.dyn at link time > MIPS: vmlinux.lds.S: explicitly declare .got table > vmlinux.lds.h: catch compound literals into data and BSS > MIPS: select ARCH_WANT_LD_ORPHAN_WARN this breaks my builds: LD vmlinux.o MODPOST vmlinux.symvers MODINFO modules.builtin.modinfo GEN modules.builtin LD .tmp_vmlinux.kallsyms1 mips64-linux-gnu-ld: Unexpected run-time relocations (.rel) detected! $ mips64-linux-gnu-ld --version GNU ld version 2.27-3.fc24 $ mips64-linux-gnu-gcc --version mips64-linux-gnu-gcc (GCC) 6.1.1 20160621 (Red Hat Cross 6.1.1-2) Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]