From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753491AbdF2WJA (ORCPT ); Thu, 29 Jun 2017 18:09:00 -0400 Received: from mail-oi0-f66.google.com ([209.85.218.66]:33499 "EHLO mail-oi0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752545AbdF2WI6 (ORCPT ); Thu, 29 Jun 2017 18:08:58 -0400 MIME-Version: 1.0 In-Reply-To: <1495829844-69341-5-git-send-email-keescook@chromium.org> References: <1495829844-69341-1-git-send-email-keescook@chromium.org> <1495829844-69341-5-git-send-email-keescook@chromium.org> From: Arnd Bergmann Date: Fri, 30 Jun 2017 00:08:57 +0200 X-Google-Sender-Auth: _FwovQNGAHSAchOLq05y3kZY9Tg Message-ID: Subject: Re: [PATCH v2 04/20] gcc-plugins: Add the randstruct plugin To: Kees Cook Cc: Kernel Hardening , Laura Abbott , "the arch/x86 maintainers" , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, May 26, 2017 at 10:17 PM, Kees Cook wrote: > This feature is ported from grsecurity. The implementation is almost > entirely identical to the original code written by the PaX Team and > Brad Spengler. Hi Kees, I noticed new build errors that bisected back to this patch, which has now showed up in linux-next again: /git/arm-soc/arch/arm/kernel/entry-armv.S: Assembler messages: /git/arm-soc/arch/arm/kernel/entry-armv.S:800: Error: bad immediate value for offset (4644) /git/arm-soc/scripts/Makefile.build:403: recipe for target 'arch/arm/kernel/entry-armv.o' failed make[3]: *** [arch/arm/kernel/entry-armv.o] Error 1 /git/arm-soc/arch/arm/kernel/entry-armv.S: Assembler messages: /git/arm-soc/arch/arm/kernel/entry-armv.S:800: Error: bad immediate value for offset (5584) /git/arm-soc/scripts/Makefile.build:403: recipe for target 'arch/arm/kernel/entry-armv.o' failed make[3]: *** [arch/arm/kernel/entry-armv.o] Error 1 /git/arm-soc/arch/arm/mm/tlb-v4.S: Assembler messages: /git/arm-soc/arch/arm/mm/tlb-v4.S:35: Error: bad immediate value for offset (4928) /git/arm-soc/scripts/Makefile.build:403: recipe for target 'arch/arm/mm/tlb-v4.o' failed make[3]: *** [arch/arm/mm/tlb-v4.o] Error 1 /git/arm-soc/arch/arm/mm/tlb-v4wbi.S: Assembler messages: /git/arm-soc/arch/arm/mm/tlb-v4wbi.S:34: Error: bad immediate value for offset (4928) /git/arm-soc/scripts/Makefile.build:403: recipe for target 'arch/arm/mm/tlb-v4wbi.o' failed So far, that's the only thing that goes wrong for me though, and this is probably easy to fix. Arnd