~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/sparc/include/asm/tlb_32.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _SPARC_TLB_H
 
2
#define _SPARC_TLB_H
 
3
 
 
4
#define tlb_start_vma(tlb, vma) \
 
5
do {                                                            \
 
6
        flush_cache_range(vma, vma->vm_start, vma->vm_end);     \
 
7
} while (0)
 
8
 
 
9
#define tlb_end_vma(tlb, vma) \
 
10
do {                                                            \
 
11
        flush_tlb_range(vma, vma->vm_start, vma->vm_end);       \
 
12
} while (0)
 
13
 
 
14
#define __tlb_remove_tlb_entry(tlb, pte, address) \
 
15
        do { } while (0)
 
16
 
 
17
#define tlb_flush(tlb) \
 
18
do {                                                            \
 
19
        flush_tlb_mm((tlb)->mm);                                \
 
20
} while (0)
 
21
 
 
22
#include <asm-generic/tlb.h>
 
23
 
 
24
#endif /* _SPARC_TLB_H */