All of lore.kernel.org
 help / color / mirror / Atom feed
* + arm64-mm-support-arch_mmap_rnd_bits-v7.patch added to -mm tree
@ 2015-12-21 22:40 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2015-12-21 22:40 UTC (permalink / raw)
  To: dcashman, dcashman, mm-commits


The patch titled
     Subject: arm64-mm-support-arch_mmap_rnd_bits-v7
has been added to the -mm tree.  Its filename is
     arm64-mm-support-arch_mmap_rnd_bits-v7.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/arm64-mm-support-arch_mmap_rnd_bits-v7.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/arm64-mm-support-arch_mmap_rnd_bits-v7.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Daniel Cashman <dcashman@google.com>
Subject: arm64-mm-support-arch_mmap_rnd_bits-v7

* changed random bit-grabbing to explicit '&' rather than '%'
* removed unsupported ARM64 combinations for CONFIG_ARCH_MMAP_RND_BITS_MAX

Signed-off-by: Daniel Cashman <dcashman@android.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 arch/arm64/Kconfig   |   12 ++++--------
 arch/arm64/mm/mmap.c |    4 ++--
 2 files changed, 6 insertions(+), 10 deletions(-)

diff -puN arch/arm64/Kconfig~arm64-mm-support-arch_mmap_rnd_bits-v7 arch/arm64/Kconfig
--- a/arch/arm64/Kconfig~arm64-mm-support-arch_mmap_rnd_bits-v7
+++ a/arch/arm64/Kconfig
@@ -115,18 +115,14 @@ config ARCH_MMAP_RND_BITS_MIN
 #  VA_BITS - PAGE_SHIFT - 3
 config ARCH_MMAP_RND_BITS_MAX
        default 19 if ARM64_VA_BITS=36
-       default 20 if ARM64_64K_PAGES && ARM64_VA_BITS=39
-       default 22 if ARM64_16K_PAGES && ARM64_VA_BITS=39
        default 24 if ARM64_VA_BITS=39
-       default 23 if ARM64_64K_PAGES && ARM64_VA_BITS=42
-       default 25 if ARM64_16K_PAGES && ARM64_VA_BITS=42
        default 27 if ARM64_VA_BITS=42
        default 30 if ARM64_VA_BITS=47
-       default 29 if ARM64_64K_PAGES && ARM64_VA_BITS=48
-       default 31 if ARM64_16K_PAGES && ARM64_VA_BITS=48
+       default 29 if ARM64_VA_BITS=48 && ARM64_64K_PAGES
+       default 31 if ARM64_VA_BITS=48 && ARM64_16K_PAGES
        default 33 if ARM64_VA_BITS=48
-       default 15 if ARM64_64K_PAGES
-       default 17 if ARM64_16K_PAGES
+       default 14 if ARM64_64K_PAGES
+       default 16 if ARM64_16K_PAGES
        default 18
 
 config ARCH_MMAP_RND_COMPAT_BITS_MIN
diff -puN arch/arm64/mm/mmap.c~arm64-mm-support-arch_mmap_rnd_bits-v7 arch/arm64/mm/mmap.c
--- a/arch/arm64/mm/mmap.c~arm64-mm-support-arch_mmap_rnd_bits-v7
+++ a/arch/arm64/mm/mmap.c
@@ -53,10 +53,10 @@ unsigned long arch_mmap_rnd(void)
 
 #ifdef CONFIG_COMPAT
 	if (test_thread_flag(TIF_32BIT))
-		rnd = (unsigned long)get_random_int() % (1 << mmap_rnd_compat_bits);
+		rnd = (unsigned long)get_random_int() & ((1 << mmap_rnd_compat_bits) - 1);
 	else
 #endif
-		rnd = (unsigned long)get_random_int() % (1 << mmap_rnd_bits);
+		rnd = (unsigned long)get_random_int() & ((1 << mmap_rnd_bits) - 1);
 	return rnd << PAGE_SHIFT;
 }
 
_

Patches currently in -mm which might be from dcashman@google.com are

mm-mmap-add-new-proc-tunable-for-mmap_base-aslr.patch
arm-mm-support-arch_mmap_rnd_bits.patch
arm-mm-support-arch_mmap_rnd_bits-v7.patch
arm64-mm-support-arch_mmap_rnd_bits.patch
arm64-mm-support-arch_mmap_rnd_bits-v6.patch
arm64-mm-support-arch_mmap_rnd_bits-v7.patch
x86-mm-support-arch_mmap_rnd_bits.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-12-21 22:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-21 22:40 + arm64-mm-support-arch_mmap_rnd_bits-v7.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.