Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932526AbbLGS0j (ORCPT ); Mon, 7 Dec 2015 13:26:39 -0500 Received: from mail-pf0-f174.google.com ([209.85.192.174]:34086 "EHLO mail-pf0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932283AbbLGS0h (ORCPT ); Mon, 7 Dec 2015 13:26:37 -0500 Subject: Re: [PATCH v5 3/4] arm64: mm: support ARCH_MMAP_RND_BITS. To: Arnd Bergmann , Jon Hunter References: <1449000658-11475-1-git-send-email-dcashman@android.com> <1449000658-11475-4-git-send-email-dcashman@android.com> <56655EC8.6030905@nvidia.com> <1720878.JdEcLd8bhL@wuerfel> Cc: linux-kernel@vger.kernel.org, dcashman@google.com, linux-doc@vger.kernel.org, catalin.marinas@arm.com, will.deacon@arm.com, linux-mm@kvack.org, hpa@zytor.com, mingo@kernel.org, aarcange@redhat.com, linux@arm.linux.org.uk, corbet@lwn.net, xypron.glpk@gmx.de, x86@kernel.org, hecmargi@upv.es, mgorman@suse.de, rientjes@google.com, bp@suse.de, nnk@google.com, dzickus@redhat.com, keescook@chromium.org, jpoimboe@redhat.com, tglx@linutronix.de, n-horiguchi@ah.jp.nec.com, linux-arm-kernel@lists.infradead.org, salyzyn@android.com, ebiederm@xmission.com, jeffv@google.com, akpm@linux-foundation.org, kirill.shutemov@linux.intel.com From: Daniel Cashman Message-ID: <5665CF5A.1090207@android.com> Date: Mon, 7 Dec 2015 10:26:34 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <1720878.JdEcLd8bhL@wuerfel> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1306 Lines: 42 On 12/07/2015 03:13 AM, Arnd Bergmann wrote: > On Monday 07 December 2015 10:26:16 Jon Hunter wrote: >> >> diff --git a/arch/arm64/mm/mmap.c b/arch/arm64/mm/mmap.c >> index af461b935137..e59a75a308bc 100644 >> --- a/arch/arm64/mm/mmap.c >> +++ b/arch/arm64/mm/mmap.c >> @@ -51,7 +51,7 @@ unsigned long arch_mmap_rnd(void) >> { >> unsigned long rnd; >> >> -ifdef CONFIG_COMPAT >> +#ifdef CONFIG_COMPAT Thank you Jon. This ought to persuade me to do a final build against the final patch, rather than the ugly porting I had been doing. I'll include this in v6. (how embarassing =/) >> if (test_thread_flag(TIF_32BIT)) >> rnd = (unsigned long)get_random_int() % (1 << mmap_rnd_compat_bits); >> else >> >> Cheers >> > > Ideally we'd remove the #ifdef around the mmap_rnd_compat_bits declaration > and change this code to use > > if (IS_ENABLED(CONFIG_COMPAT) && test_thread_flag(TIF_32BIT)) > > Arnd That would result in "undefined reference to mmap_rnd_compat_bits" in the not-defined case, no? Thank You, Dan -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/