6bdf3b0aee
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>
26 lines
567 B
C
26 lines
567 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
// Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
|
|
|
|
#ifndef __ASM_CSKY_TLB_H
|
|
#define __ASM_CSKY_TLB_H
|
|
|
|
#include <asm/cacheflush.h>
|
|
|
|
#define tlb_start_vma(tlb, vma) \
|
|
do { \
|
|
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); \
|
|
} while (0)
|
|
|
|
#define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
|
|
|
|
#include <asm-generic/tlb.h>
|
|
|
|
#endif /* __ASM_CSKY_TLB_H */
|