| .. | .. |
|---|
| 11 | 11 | #include <linux/spinlock.h> |
|---|
| 12 | 12 | |
|---|
| 13 | 13 | #include <asm/cpu_entry_area.h> |
|---|
| 14 | | -#include <asm/pgtable.h> |
|---|
| 15 | | -#include <asm/pgalloc.h> |
|---|
| 16 | 14 | #include <asm/fixmap.h> |
|---|
| 17 | 15 | #include <asm/e820/api.h> |
|---|
| 18 | 16 | #include <asm/tlb.h> |
|---|
| 19 | 17 | #include <asm/tlbflush.h> |
|---|
| 20 | 18 | #include <asm/io.h> |
|---|
| 19 | +#include <linux/vmalloc.h> |
|---|
| 21 | 20 | |
|---|
| 22 | 21 | unsigned int __VMALLOC_RESERVE = 128 << 20; |
|---|
| 23 | 22 | |
|---|
| .. | .. |
|---|
| 63 | 62 | * It's enough to flush this one mapping. |
|---|
| 64 | 63 | * (PGE mappings get flushed as well) |
|---|
| 65 | 64 | */ |
|---|
| 66 | | - __flush_tlb_one_kernel(vaddr); |
|---|
| 65 | + flush_tlb_one_kernel(vaddr); |
|---|
| 67 | 66 | } |
|---|
| 68 | 67 | |
|---|
| 69 | 68 | unsigned long __FIXADDR_TOP = 0xfffff000; |
|---|