On 4/16/21 5:43 PM, Oleg Nesterov wrote:
> On 04/16, He Zhe wrote:
>> --- a/arch/arm64/include/asm/syscall.h
>> +++ b/arch/arm64/include/asm/syscall.h
>> @@ -44,7 +44,12 @@ static inline long syscall_get_error(struct task_struct
>> *task,
>> static inline long syscall_get_return_value(struct task_struct *task,
>> struct pt_regs *regs)
>> {
>> - return regs->regs[0];
>> + long val = regs->regs[0];
>> +
>> + if (is_compat_thread(task_thread_info(task)))
>> + val = sign_extend64(val, 31);
>> +
>> + return val;
>> }
> I can't really review these arm-specific patches, but with this change both
> syscall_get_error() and is_syscall_success() can use
> syscall_get_return_value()
> to avoid the code duplication.
Thanks. I'll improve this if v2 is needed.
Regards,
Zhe
>
> Oleg.
>
--
Linux-audit mailing list
[email protected]
https://listman.redhat.com/mailman/listinfo/linux-audit
Re: [PATCH 2/3] arm64: syscall.h: Add sign extension handling in syscall_get_return_value for compat
- [PATCH 1/3] arm64: ptrace: Add is_syscall_success to handl... He Zhe
- [PATCH 2/3] arm64: syscall.h: Add sign extension hand... He Zhe
- Re: [PATCH 2/3] arm64: syscall.h: Add sign extens... Oleg Nesterov
- Re: [PATCH 2/3] arm64: syscall.h: Add sign ex... He Zhe
- Re: [PATCH 2/3] arm64: syscall.h: Add sign extens... Mark Rutland
- Re: [PATCH 2/3] arm64: syscall.h: Add sign ex... Mark Rutland
- [PATCH 3/3] audit: Use syscall_get_return_value to ge... He Zhe
- Re: [PATCH 1/3] arm64: ptrace: Add is_syscall_success... Catalin Marinas
- Re: [PATCH 1/3] arm64: ptrace: Add is_syscall_suc... Mark Rutland
- RE: [PATCH 1/3] arm64: ptrace: Add is_syscall... David Laight
- Re: [PATCH 1/3] arm64: ptrace: Add is_syscall... Will Deacon
- Re: [PATCH 1/3] arm64: ptrace: Add is_sys... He Zhe
- Re: [PATCH 1/3] arm64: ptrace: Add is_sys... Mark Rutland
- Re: [PATCH 1/3] arm64: ptrace: Add i... Will Deacon
