[PATCH v2] linux-user/trace-events: fix minor typo in format string

Alex Bennée posted 1 patch 2 years, 9 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/next-importer-push tags/patchew/20210614144245.17660-1-alex.bennee@linaro.org
linux-user/trace-events | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Alex Bennée 2 years, 9 months ago
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

---
v2
  - fix typo in summary :-O
---
 linux-user/trace-events | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/trace-events b/linux-user/trace-events
index 1ec0d11ee3..e7d2f54e94 100644
--- a/linux-user/trace-events
+++ b/linux-user/trace-events
@@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
 user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
 user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
 user_handle_signal(void *env, int target_sig) "env=%p signal %d"
-user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
+user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
 user_queue_signal(void *env, int target_sig) "env=%p signal %d"
 user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
 
-- 
2.20.1


Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Philippe Mathieu-Daudé 2 years, 9 months ago
On 6/14/21 4:42 PM, Alex Bennée wrote:
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> ---
> v2
>   - fix typo in summary :-O
> ---
>  linux-user/trace-events | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Laurent Vivier 2 years, 9 months ago
Le 14/06/2021 à 16:42, Alex Bennée a écrit :
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> ---
> v2
>   - fix typo in summary :-O
> ---
>  linux-user/trace-events | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/linux-user/trace-events b/linux-user/trace-events
> index 1ec0d11ee3..e7d2f54e94 100644
> --- a/linux-user/trace-events
> +++ b/linux-user/trace-events
> @@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
>  user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
>  user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
>  user_handle_signal(void *env, int target_sig) "env=%p signal %d"
> -user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
> +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
>  user_queue_signal(void *env, int target_sig) "env=%p signal %d"
>  user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
>  
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>

Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Alex Bennée 2 years, 9 months ago
Laurent Vivier <laurent@vivier.eu> writes:

> Le 14/06/2021 à 16:42, Alex Bennée a écrit :
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>> 
>> ---
>> v2
>>   - fix typo in summary :-O
>> ---
>>  linux-user/trace-events | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>> 
>> diff --git a/linux-user/trace-events b/linux-user/trace-events
>> index 1ec0d11ee3..e7d2f54e94 100644
>> --- a/linux-user/trace-events
>> +++ b/linux-user/trace-events
>> @@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
>>  user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
>>  user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
>>  user_handle_signal(void *env, int target_sig) "env=%p signal %d"
>> -user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
>> +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
>>  user_queue_signal(void *env, int target_sig) "env=%p signal %d"
>>  user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
>>  
>> 
>
> Reviewed-by: Laurent Vivier <laurent@vivier.eu>

Are you going to queue or shall I add it to my pile of "misc"?


-- 
Alex Bennée

Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Laurent Vivier 2 years, 9 months ago
Le 17/06/2021 à 13:47, Alex Bennée a écrit :
> 
> Laurent Vivier <laurent@vivier.eu> writes:
> 
>> Le 14/06/2021 à 16:42, Alex Bennée a écrit :
>>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>>>
>>> ---
>>> v2
>>>   - fix typo in summary :-O
>>> ---
>>>  linux-user/trace-events | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/linux-user/trace-events b/linux-user/trace-events
>>> index 1ec0d11ee3..e7d2f54e94 100644
>>> --- a/linux-user/trace-events
>>> +++ b/linux-user/trace-events
>>> @@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
>>>  user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
>>>  user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
>>>  user_handle_signal(void *env, int target_sig) "env=%p signal %d"
>>> -user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
>>> +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
>>>  user_queue_signal(void *env, int target_sig) "env=%p signal %d"
>>>  user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
>>>  
>>>
>>
>> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
> 
> Are you going to queue or shall I add it to my pile of "misc"?
> 
> 

You can put it in your pile if you think you're going to do a pull request soon.

I don't plan to do a trivial branch pull request before next week.

Thanks,
Laurent

Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Laurent Vivier 2 years, 9 months ago
Le 17/06/2021 à 14:20, Laurent Vivier a écrit :
> Le 17/06/2021 à 13:47, Alex Bennée a écrit :
>>
>> Laurent Vivier <laurent@vivier.eu> writes:
>>
>>> Le 14/06/2021 à 16:42, Alex Bennée a écrit :
>>>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>>>>
>>>> ---
>>>> v2
>>>>   - fix typo in summary :-O
>>>> ---
>>>>  linux-user/trace-events | 2 +-
>>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/linux-user/trace-events b/linux-user/trace-events
>>>> index 1ec0d11ee3..e7d2f54e94 100644
>>>> --- a/linux-user/trace-events
>>>> +++ b/linux-user/trace-events
>>>> @@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
>>>>  user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
>>>>  user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
>>>>  user_handle_signal(void *env, int target_sig) "env=%p signal %d"
>>>> -user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
>>>> +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
>>>>  user_queue_signal(void *env, int target_sig) "env=%p signal %d"
>>>>  user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
>>>>  
>>>>
>>>
>>> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
>>
>> Are you going to queue or shall I add it to my pile of "misc"?
>>
>>
> 
> You can put it in your pile if you think you're going to do a pull request soon.
> 
> I don't plan to do a trivial branch pull request before next week.

But I'll try to do a linux-user one before...

Thanks,
Laurent


Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Alex Bennée 2 years, 9 months ago
Laurent Vivier <laurent@vivier.eu> writes:

> Le 17/06/2021 à 14:20, Laurent Vivier a écrit :
>> Le 17/06/2021 à 13:47, Alex Bennée a écrit :
>>>
>>> Laurent Vivier <laurent@vivier.eu> writes:
>>>
>>>> Le 14/06/2021 à 16:42, Alex Bennée a écrit :
>>>>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>>>>>
>>>>> ---
>>>>> v2
>>>>>   - fix typo in summary :-O
>>>>> ---
>>>>>  linux-user/trace-events | 2 +-
>>>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/linux-user/trace-events b/linux-user/trace-events
>>>>> index 1ec0d11ee3..e7d2f54e94 100644
>>>>> --- a/linux-user/trace-events
>>>>> +++ b/linux-user/trace-events
>>>>> @@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
>>>>>  user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
>>>>>  user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
>>>>>  user_handle_signal(void *env, int target_sig) "env=%p signal %d"
>>>>> -user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
>>>>> +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
>>>>>  user_queue_signal(void *env, int target_sig) "env=%p signal %d"
>>>>>  user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
>>>>>  
>>>>>
>>>>
>>>> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
>>>
>>> Are you going to queue or shall I add it to my pile of "misc"?
>>>
>>>
>> 
>> You can put it in your pile if you think you're going to do a pull request soon.
>> 
>> I don't plan to do a trivial branch pull request before next week.
>
> But I'll try to do a linux-user one before...

Go for it, I have nothing cooking at the moment apart from a massive
re-base of the ARM refactor series :-/

-- 
Alex Bennée

Re: [PATCH v2] linux-user/trace-events: fix minor typo in format string
Posted by Laurent Vivier 2 years, 9 months ago
Le 14/06/2021 à 16:42, Alex Bennée a écrit :
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> ---
> v2
>   - fix typo in summary :-O
> ---
>  linux-user/trace-events | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/linux-user/trace-events b/linux-user/trace-events
> index 1ec0d11ee3..e7d2f54e94 100644
> --- a/linux-user/trace-events
> +++ b/linux-user/trace-events
> @@ -11,7 +11,7 @@ user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx
>  user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
>  user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
>  user_handle_signal(void *env, int target_sig) "env=%p signal %d"
> -user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
> +user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d)"
>  user_queue_signal(void *env, int target_sig) "env=%p signal %d"
>  user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
>  
> 

Applied to my linux-user-for-6.1 branch.

Thanks,
Laurent