Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 84976
b: refs/heads/master
c: 40316c1
h: refs/heads/master
v: v3
  • Loading branch information
Jesper Nilsson committed Feb 8, 2008
1 parent a2a07ff commit 7a7faeb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 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: 5712e4dfc65220aa0693e8903345743f80b38230
refs/heads/master: 40316c1fadfcd7856e43029fdbac5df6a1d57063
13 changes: 7 additions & 6 deletions trunk/arch/cris/arch-v10/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* Low level bus fault handler
*
*
* Copyright (C) 2000, 2001 Axis Communications AB
* Copyright (C) 2000-2007 Axis Communications AB
*
* Authors: Bjorn Wesen
*
* Authors: Bjorn Wesen
*
*/

#include <linux/mm.h>
Expand Down Expand Up @@ -60,7 +60,7 @@ handle_mmu_bus_fault(struct pt_regs *regs)
#ifdef DEBUG
page_id = IO_EXTRACT(R_MMU_CAUSE, page_id, cause);
acc = IO_EXTRACT(R_MMU_CAUSE, acc_excp, cause);
inv = IO_EXTRACT(R_MMU_CAUSE, inv_excp, cause);
inv = IO_EXTRACT(R_MMU_CAUSE, inv_excp, cause);
index = IO_EXTRACT(R_TLB_SELECT, index, select);
#endif
miss = IO_EXTRACT(R_MMU_CAUSE, miss_excp, cause);
Expand All @@ -84,12 +84,13 @@ handle_mmu_bus_fault(struct pt_regs *regs)
local_irq_disable();
pmd = (pmd_t *)(pgd + pgd_index(address));
if (pmd_none(*pmd))
return;
goto exit;
pte = *pte_offset_kernel(pmd, address);
if (!pte_present(pte))
return;
goto exit;
*R_TLB_SELECT = select;
*R_TLB_HI = cause;
*R_TLB_LO = pte_val(pte);
exit:
local_irq_restore(flags);
}

0 comments on commit 7a7faeb

Please sign in to comment.