Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 163350
b: refs/heads/master
c: 3ed6e12
h: refs/heads/master
v: v3
  • Loading branch information
Paul Mundt committed Jul 29, 2009
1 parent c740461 commit 3838924
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: 9cef7492696a416663b4edb953a4eade8517ebeb
refs/heads/master: 3ed6e129390fb872c3b7e05a232e5d380fbdfb48
2 changes: 1 addition & 1 deletion trunk/arch/sh/mm/tlb-pteaex.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
/*
* Handle debugger faulting in for debugee.
*/
if (current->active_mm != vma->vm_mm)
if (vma && current->active_mm != vma->vm_mm)
return;

local_irq_save(flags);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/mm/tlb-sh3.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
/*
* Handle debugger faulting in for debugee.
*/
if (current->active_mm != vma->vm_mm)
if (vma && current->active_mm != vma->vm_mm)
return;

local_irq_save(flags);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/mm/tlb-sh4.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
/*
* Handle debugger faulting in for debugee.
*/
if (current->active_mm != vma->vm_mm)
if (vma && current->active_mm != vma->vm_mm)
return;

local_irq_save(flags);
Expand Down

0 comments on commit 3838924

Please sign in to comment.