提交 5aa29975 编写于 作者: H Heiko Carstens 提交者: Martin Schwidefsky

s390/vmem: make use of pte_clear()

Use pte_clear() instead of open-coding it.
Signed-off-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
Acked-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
上级 c126aa83
...@@ -148,9 +148,7 @@ static void vmem_remove_range(unsigned long start, unsigned long size) ...@@ -148,9 +148,7 @@ static void vmem_remove_range(unsigned long start, unsigned long size)
pud_t *pu_dir; pud_t *pu_dir;
pmd_t *pm_dir; pmd_t *pm_dir;
pte_t *pt_dir; pte_t *pt_dir;
pte_t pte;
pte_val(pte) = _PAGE_INVALID;
while (address < end) { while (address < end) {
pg_dir = pgd_offset_k(address); pg_dir = pgd_offset_k(address);
if (pgd_none(*pg_dir)) { if (pgd_none(*pg_dir)) {
...@@ -178,7 +176,7 @@ static void vmem_remove_range(unsigned long start, unsigned long size) ...@@ -178,7 +176,7 @@ static void vmem_remove_range(unsigned long start, unsigned long size)
continue; continue;
} }
pt_dir = pte_offset_kernel(pm_dir, address); pt_dir = pte_offset_kernel(pm_dir, address);
*pt_dir = pte; pte_clear(&init_mm, address, pt_dir);
address += PAGE_SIZE; address += PAGE_SIZE;
} }
flush_tlb_kernel_range(start, end); flush_tlb_kernel_range(start, end);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
新手
引导
客服 返回
顶部