mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
powerpc/ptrace-view: Use pt_regs values instead of thread_struct based one.
We will remove thread.amr/iamr/uamor in a later patch Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20201127044424.40686-14-aneesh.kumar@linux.ibm.com
This commit is contained in:
parent
d5fa30e699
commit
edc541ecaa
@ -471,12 +471,12 @@ static int pkey_active(struct task_struct *target, const struct user_regset *reg
|
||||
static int pkey_get(struct task_struct *target, const struct user_regset *regset,
|
||||
struct membuf to)
|
||||
{
|
||||
BUILD_BUG_ON(TSO(amr) + sizeof(unsigned long) != TSO(iamr));
|
||||
|
||||
if (!arch_pkeys_enabled())
|
||||
return -ENODEV;
|
||||
|
||||
membuf_write(&to, &target->thread.amr, 2 * sizeof(unsigned long));
|
||||
membuf_store(&to, target->thread.regs->amr);
|
||||
membuf_store(&to, target->thread.regs->iamr);
|
||||
return membuf_store(&to, default_uamor);
|
||||
}
|
||||
|
||||
@ -509,7 +509,8 @@ static int pkey_set(struct task_struct *target, const struct user_regset *regset
|
||||
* Pick the AMR values for the keys that kernel is using. This
|
||||
* will be indicated by the ~default_uamor bits.
|
||||
*/
|
||||
target->thread.amr = (new_amr & default_uamor) | (target->thread.amr & ~default_uamor);
|
||||
target->thread.regs->amr = (new_amr & default_uamor) |
|
||||
(target->thread.regs->amr & ~default_uamor);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user