sparc32: mm: Fix argument checking in __srmmu_get_nocache()
authorWill Deacon <will@kernel.org>
Tue, 14 Apr 2020 21:40:08 +0000 (22:40 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 13 May 2020 22:32:00 +0000 (15:32 -0700)
The 'size' argument to __srmmu_get_nocache() is a number of bytes not
a shift value, so fix up the sanity checking to treat it properly.

Cc: "David S. Miller" <davem@davemloft.net>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/mm/srmmu.c

index b7c94de..cb9ded8 100644 (file)
@@ -175,18 +175,18 @@ pte_t *pte_offset_kernel(pmd_t *dir, unsigned long address)
  */
 static void *__srmmu_get_nocache(int size, int align)
 {
-       int offset;
+       int offset, minsz = 1 << SRMMU_NOCACHE_BITMAP_SHIFT;
        unsigned long addr;
 
-       if (size < SRMMU_NOCACHE_BITMAP_SHIFT) {
+       if (size < minsz) {
                printk(KERN_ERR "Size 0x%x too small for nocache request\n",
                       size);
-               size = SRMMU_NOCACHE_BITMAP_SHIFT;
+               size = minsz;
        }
-       if (size & (SRMMU_NOCACHE_BITMAP_SHIFT - 1)) {
-               printk(KERN_ERR "Size 0x%x unaligned int nocache request\n",
+       if (size & (minsz - 1)) {
+               printk(KERN_ERR "Size 0x%x unaligned in nocache request\n",
                       size);
-               size += SRMMU_NOCACHE_BITMAP_SHIFT - 1;
+               size += minsz - 1;
        }
        BUG_ON(align > SRMMU_NOCACHE_ALIGN_MAX);