024b246ed2
Sam Ravnborg did the build-test that the direct header file move works, I'm just committing it. This is a pure move: mkdir arch/alpha/include git mv include/asm-alpha arch/alpha/include/asm with no other changes. Requested-and-tested-by: Sam Ravnborg <sam@ravnborg.org> Cc: Richard Henderson <rth@twiddle.net> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
418 B
C
15 lines
418 B
C
#ifndef _ALPHA_TLB_H
|
|
#define _ALPHA_TLB_H
|
|
|
|
#define tlb_start_vma(tlb, vma) do { } while (0)
|
|
#define tlb_end_vma(tlb, vma) do { } while (0)
|
|
#define __tlb_remove_tlb_entry(tlb, pte, addr) do { } while (0)
|
|
|
|
#define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
|
|
|
|
#include <asm-generic/tlb.h>
|
|
|
|
#define __pte_free_tlb(tlb, pte) pte_free((tlb)->mm, pte)
|
|
#define __pmd_free_tlb(tlb, pmd) pmd_free((tlb)->mm, pmd)
|
|
|
|
#endif
|