arch/tile: support new kunmap_atomic() naming convention.
See commit 597781f3e5
.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
This commit is contained in:
Родитель
bae918ac28
Коммит
b77c49ab6d
|
@ -60,7 +60,7 @@ void *kmap_fix_kpte(struct page *page, int finished);
|
||||||
/* This macro is used only in map_new_virtual() to map "page". */
|
/* This macro is used only in map_new_virtual() to map "page". */
|
||||||
#define kmap_prot page_to_kpgprot(page)
|
#define kmap_prot page_to_kpgprot(page)
|
||||||
|
|
||||||
void kunmap_atomic(void *kvaddr, enum km_type type);
|
void kunmap_atomic_notypecheck(void *kvaddr, enum km_type type);
|
||||||
void *kmap_atomic_pfn(unsigned long pfn, enum km_type type);
|
void *kmap_atomic_pfn(unsigned long pfn, enum km_type type);
|
||||||
void *kmap_atomic_prot_pfn(unsigned long pfn, enum km_type type, pgprot_t prot);
|
void *kmap_atomic_prot_pfn(unsigned long pfn, enum km_type type, pgprot_t prot);
|
||||||
struct page *kmap_atomic_to_page(void *ptr);
|
struct page *kmap_atomic_to_page(void *ptr);
|
||||||
|
|
|
@ -276,7 +276,7 @@ void *kmap_atomic(struct page *page, enum km_type type)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(kmap_atomic);
|
EXPORT_SYMBOL(kmap_atomic);
|
||||||
|
|
||||||
void kunmap_atomic(void *kvaddr, enum km_type type)
|
void kunmap_atomic_notypecheck(void *kvaddr, enum km_type type)
|
||||||
{
|
{
|
||||||
unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
|
unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
|
||||||
enum fixed_addresses idx = type + KM_TYPE_NR*smp_processor_id();
|
enum fixed_addresses idx = type + KM_TYPE_NR*smp_processor_id();
|
||||||
|
@ -300,7 +300,7 @@ void kunmap_atomic(void *kvaddr, enum km_type type)
|
||||||
arch_flush_lazy_mmu_mode();
|
arch_flush_lazy_mmu_mode();
|
||||||
pagefault_enable();
|
pagefault_enable();
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(kunmap_atomic);
|
EXPORT_SYMBOL(kunmap_atomic_notypecheck);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This API is supposed to allow us to map memory without a "struct page".
|
* This API is supposed to allow us to map memory without a "struct page".
|
||||||
|
|
Загрузка…
Ссылка в новой задаче