diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-05-24 22:37:15 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-05-24 22:37:15 -0700 |
| commit | c9e1750cf60872334f2425848dfc5d3a7dbd323d (patch) | |
| tree | 1bf9023d70d59f7c4a633774c7bc4413d7fdfd7a /include/asm-generic | |
| parent | 51f17423ad91e33031147336330fa2e5d34e803d (diff) | |
Pass in a "dirty" argument to ptep_establish in
preparation for pte update race fix.
This does not actually use the information yet, but
the next few patches will start to put it to some
good use.
Diffstat (limited to 'include/asm-generic')
| -rw-r--r-- | include/asm-generic/pgtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h index 9bf5071ac4a4..fc380ce905ad 100644 --- a/include/asm-generic/pgtable.h +++ b/include/asm-generic/pgtable.h @@ -10,7 +10,7 @@ * * We hold the mm semaphore for reading and vma->vm_mm->page_table_lock */ -#define ptep_establish(__vma, __address, __ptep, __entry) \ +#define ptep_establish(__vma, __address, __ptep, __entry, __dirty) \ do { \ set_pte(__ptep, __entry); \ flush_tlb_page(__vma, __address); \ |
