https://github.com/torvalds/linux
Revision 3146b39c185f8a436d430132457e84fa1d8f8208 authored by Linus Torvalds on 02 October 2007, 03:24:52 UTC, committed by Linus Torvalds on 02 October 2007, 03:24:52 UTC
No, I didn't want to do this, but we had more stuff go in after -rc8
than we had in the previous -rc. Gaah.
1 parent a347017
Raw File
Tip revision: 3146b39c185f8a436d430132457e84fa1d8f8208 authored by Linus Torvalds on 02 October 2007, 03:24:52 UTC
Linux 2.6.23-rc9
Tip revision: 3146b39
tlb.h
#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(pte)
#define __pmd_free_tlb(tlb,pmd)			pmd_free(pmd)
 
#endif
back to top