Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 322493
b: refs/heads/master
c: 00ca0de
h: refs/heads/master
i:
  322491: 14e25dc
v: v3
  • Loading branch information
Anton Blanchard authored and Benjamin Herrenschmidt committed Sep 5, 2012
1 parent 59c2160 commit 8915a94
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 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: 1b6ca2a6fe56e7697d57348646e07df08f43b1bb
refs/heads/master: 00ca0de02f80924dfff6b4f630e1dff3db005e35
4 changes: 3 additions & 1 deletion trunk/arch/powerpc/kernel/sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,10 @@ static ssize_t show_dscr_default(struct device *dev,

static void update_dscr(void *dummy)
{
if (!current->thread.dscr_inherit)
if (!current->thread.dscr_inherit) {
current->thread.dscr = dscr_default;
mtspr(SPRN_DSCR, dscr_default);
}
}

static ssize_t __used store_dscr_default(struct device *dev,
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/powerpc/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -972,8 +972,9 @@ static int emulate_instruction(struct pt_regs *regs)
cpu_has_feature(CPU_FTR_DSCR)) {
PPC_WARN_EMULATED(mtdscr, regs);
rd = (instword >> 21) & 0x1f;
mtspr(SPRN_DSCR, regs->gpr[rd]);
current->thread.dscr = regs->gpr[rd];
current->thread.dscr_inherit = 1;
mtspr(SPRN_DSCR, current->thread.dscr);
return 0;
}
#endif
Expand Down

0 comments on commit 8915a94

Please sign in to comment.