Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53915
b: refs/heads/master
c: 9e5e316
h: refs/heads/master
i:
  53913: 047bf27
  53911: d9cb52c
v: v3
  • Loading branch information
Zachary Amsden authored and Andi Kleen committed May 2, 2007
1 parent 4f5f2a6 commit 1d57456
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 23 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 142dd975911fdd82b1b6f6617cd20ac90a8ccf00
refs/heads/master: 9e5e3162b2d5e4466187ecd63c9eec2de33cb7bc
10 changes: 0 additions & 10 deletions trunk/include/asm-i386/pgtable-2level.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,6 @@ static inline void native_pte_clear(struct mm_struct *mm, unsigned long addr, pt
*xp = __pte(0);
}

/* local pte updates need not use xchg for locking */
static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
{
pte_t res;

res = *ptep;
native_pte_clear(NULL, 0, ptep);
return res;
}

#ifdef CONFIG_SMP
static inline pte_t native_ptep_get_and_clear(pte_t *xp)
{
Expand Down
10 changes: 0 additions & 10 deletions trunk/include/asm-i386/pgtable-3level.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,6 @@ static inline void pud_clear (pud_t * pud) { }
#define pmd_offset(pud, address) ((pmd_t *) pud_page(*(pud)) + \
pmd_index(address))

/* local pte updates need not use xchg for locking */
static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
{
pte_t res;

res = *ptep;
native_pte_clear(NULL, 0, ptep);
return res;
}

#ifdef CONFIG_SMP
static inline pte_t native_ptep_get_and_clear(pte_t *ptep)
{
Expand Down
17 changes: 15 additions & 2 deletions trunk/include/asm-i386/pgtable.h
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,16 @@ extern void vmalloc_sync_all(void);
#define pte_update_defer(mm, addr, ptep) do { } while (0)
#endif

/* local pte updates need not use xchg for locking */
static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
{
pte_t res = *ptep;

/* Pure native function needs no input for mm, addr */
native_pte_clear(NULL, 0, ptep);
return res;
}

/*
* We only update the dirty/accessed state if we set
* the dirty bit by hand in the kernel, since the hardware
Expand Down Expand Up @@ -343,8 +353,11 @@ static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, unsigned long
{
pte_t pte;
if (full) {
pte = *ptep;
native_pte_clear(mm, addr, ptep);
/*
* Full address destruction in progress; paravirt does not
* care about updates and native needs no locking
*/
pte = native_local_ptep_get_and_clear(ptep);
} else {
pte = ptep_get_and_clear(mm, addr, ptep);
}
Expand Down

0 comments on commit 1d57456

Please sign in to comment.