Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 97704
b: refs/heads/master
c: 057229f
h: refs/heads/master
v: v3
  • Loading branch information
Ilpo Järvinen authored and Ralf Baechle committed Jun 5, 2008
1 parent 03cd32e commit 837fded
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: 326e2e1a59decc81bea052e8a8c6d75c63daa2db
refs/heads/master: 057229f9efc7ebebd3ce0496195ed46df631f383
3 changes: 2 additions & 1 deletion trunk/include/asm-mips/pgtable.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,10 @@ static inline pte_t pte_mkdirty(pte_t pte)
static inline pte_t pte_mkyoung(pte_t pte)
{
pte.pte_low |= _PAGE_ACCESSED;
if (pte.pte_low & _PAGE_READ)
if (pte.pte_low & _PAGE_READ) {
pte.pte_low |= _PAGE_SILENT_READ;
pte.pte_high |= _PAGE_SILENT_READ;
}
return pte;
}
#else
Expand Down

0 comments on commit 837fded

Please sign in to comment.