blob: 1f6a8a67cfda12025d23d542015934e3458d3f29 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _CRIS_TLB_H
3#define _CRIS_TLB_H
4
Jesper Nilssonebd33e12007-11-14 17:01:28 -08005#include <linux/pagemap.h>
6
Jesper Nilsson556dcee2008-10-21 17:45:58 +02007#include <arch/tlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9/*
10 * cris doesn't need any special per-pte or
11 * per-vma handling..
12 */
13#define tlb_start_vma(tlb, vma) do { } while (0)
14#define tlb_end_vma(tlb, vma) do { } while (0)
15#define __tlb_remove_tlb_entry(tlb, ptep, address) do { } while (0)
16
17#define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
18#include <asm-generic/tlb.h>
19
20#endif