Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 367948
b: refs/heads/master
c: db0fe53
h: refs/heads/master
v: v3
  • Loading branch information
Richard Kuo committed May 1, 2013
1 parent d1fd660 commit 4c7b84d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 20f704b69af63bffbc8e70bcf21990318a8912f5
refs/heads/master: db0fe532db3f60c93147514adfd1765894ea501e
10 changes: 10 additions & 0 deletions trunk/arch/hexagon/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ static const char *ex_name(int ex)
return "Write protection fault";
case HVM_GE_C_XMAL:
return "Misaligned instruction";
case HVM_GE_C_WREG:
return "Multiple writes to same register in packet";
case HVM_GE_C_PCAL:
return "Program counter values that are not properly aligned";
case HVM_GE_C_RMAL:
return "Misaligned data load";
case HVM_GE_C_WMAL:
Expand Down Expand Up @@ -324,6 +328,12 @@ void do_genex(struct pt_regs *regs)
case HVM_GE_C_XMAL:
misaligned_instruction(regs);
break;
case HVM_GE_C_WREG:
illegal_instruction(regs);
break;
case HVM_GE_C_PCAL:
misaligned_instruction(regs);
break;
case HVM_GE_C_RMAL:
misaligned_data_load(regs);
break;
Expand Down

0 comments on commit 4c7b84d

Please sign in to comment.