提交 72461997 编写于 作者: P Paul Mundt

sh: Check SR.DSP bit for DSP regset validity.

Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
上级 f9540ece
......@@ -179,6 +179,14 @@ static int dspregs_set(struct task_struct *target,
return ret;
}
static int dspregs_active(struct task_struct *target,
const struct user_regset *regset)
{
struct pt_regs *regs = task_pt_regs(target);
return regs->sr & SR_DSP ? regset->n : 0;
}
#endif
/*
......@@ -213,6 +221,7 @@ static const struct user_regset sh_regsets[] = {
.align = sizeof(long),
.get = dspregs_get,
.set = dspregs_set,
.active = dspregs_active,
},
#endif
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册