aboutsummaryrefslogtreecommitdiffstats
path: root/arch/csky
diff options
context:
space:
mode:
authorJason Gunthorpe <jgg@mellanox.com>2019-09-02 02:47:05 -0300
committerJason Gunthorpe <jgg@mellanox.com>2019-09-07 04:28:05 -0300
commit6bdf3b0aeead8edf91306dd60dcf676c257aad30 (patch)
tree85928bb7534b18779ca4dcf21199fcdb92cbcebf /arch/csky
parentpagewalk: use lockdep_assert_held for locking validation (diff)
downloadlinux-dev-6bdf3b0aeead8edf91306dd60dcf676c257aad30.tar.xz
linux-dev-6bdf3b0aeead8edf91306dd60dcf676c257aad30.zip
csky: add missing brackets in a macro for tlb.h
As an earlier patch made the macro argument more complicated, compilation now fails with: In file included from mm/madvise.c:30: mm/madvise.c: In function 'madvise_free_single_vma': arch/csky/include/asm/tlb.h:11:11: error: invalid type argument of '->' (have 'struct mmu_gather') Link: https://lore.kernel.org/r/20190901193601.GB5208@mellanox.com Fixes: 923bfc561e75 ("pagewalk: separate function pointers from iterator data") Reported-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'arch/csky')
-rw-r--r--arch/csky/include/asm/tlb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/csky/include/asm/tlb.h b/arch/csky/include/asm/tlb.h
index 8c7cc097666f..fdff9b8d70c8 100644
--- a/arch/csky/include/asm/tlb.h
+++ b/arch/csky/include/asm/tlb.h
@@ -8,14 +8,14 @@
#define tlb_start_vma(tlb, vma) \
do { \
- if (!tlb->fullmm) \
- flush_cache_range(vma, vma->vm_start, vma->vm_end); \
+ if (!(tlb)->fullmm) \
+ flush_cache_range(vma, (vma)->vm_start, (vma)->vm_end); \
} while (0)
#define tlb_end_vma(tlb, vma) \
do { \
- if (!tlb->fullmm) \
- flush_tlb_range(vma, vma->vm_start, vma->vm_end); \
+ if (!(tlb)->fullmm) \
+ flush_tlb_range(vma, (vma)->vm_start, (vma)->vm_end); \
} while (0)
#define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)