Skip to content

Commit

Permalink
ARM: pgtable: get rid of TOP_PTE()
Browse files Browse the repository at this point in the history
Get rid of the TOP_PTE() macro as we now have proper accessor functions
instead.  No one should be directly referencing the top pte table
anymore.

Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Jan 26, 2012
1 parent 0d31fe4 commit 60db4fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm/mm/mm.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
/* the upper-most page table pointer */
extern pmd_t *top_pmd;

#define TOP_PTE(x) pte_offset_kernel(top_pmd, x)

/*
* 0xffff8000 to 0xffffffff is reserved for any ARM architecture
* specific hacks for copying pages efficiently, while 0xffff4000
Expand All @@ -20,13 +18,15 @@ extern pmd_t *top_pmd;

static inline void set_top_pte(unsigned long va, pte_t pte)
{
set_pte_ext(TOP_PTE(va), pte, 0);
pte_t *ptep = pte_offset_kernel(top_pmd, va);
set_pte_ext(ptep, pte, 0);
local_flush_tlb_kernel_page(va);
}

static inline pte_t get_top_pte(unsigned long va)
{
return *TOP_PTE(va);
pte_t *ptep = pte_offset_kernel(top_pmd, va);
return *ptep;
}

static inline pmd_t *pmd_off_k(unsigned long virt)
Expand Down

0 comments on commit 60db4fc

Please sign in to comment.