* [Qemu-devel] [PATCH] qemu.py: Fix error message when qemu dies from signal
@ 2019-01-11 20:13 Eric Blake
2019-01-14 11:04 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 4+ messages in thread
From: Eric Blake @ 2019-01-11 20:13 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Eduardo Habkost, Cleber Rosa
When qemu dies from a signal, the python code gets a negative
value for exitcode; but signal numbers are positive. Copy the
pattern used in qemu-iotests/iotests.py for reporting a positive
value.
CC: qemu-trivial@nongnu.org
Signed-off-by: Eric Blake <eblake@redhat.com>
---
scripts/qemu.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/qemu.py b/scripts/qemu.py
index 6e3b0e67719..0a5e02eb56e 100644
--- a/scripts/qemu.py
+++ b/scripts/qemu.py
@@ -351,7 +351,7 @@ class QEMUMachine(object):
command = ' '.join(self._qemu_full_args)
else:
command = ''
- LOG.warn(msg, exitcode, command)
+ LOG.warn(msg, -exitcode, command)
self._launched = False
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] qemu.py: Fix error message when qemu dies from signal
2019-01-11 20:13 [Qemu-devel] [PATCH] qemu.py: Fix error message when qemu dies from signal Eric Blake
@ 2019-01-14 11:04 ` Philippe Mathieu-Daudé
2019-01-14 15:36 ` Eric Blake
0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-01-14 11:04 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: qemu-trivial, Eduardo Habkost, Cleber Rosa
Hi Eric,
On 1/11/19 9:13 PM, Eric Blake wrote:
> When qemu dies from a signal, the python code gets a negative
> value for exitcode; but signal numbers are positive. Copy the
> pattern used in qemu-iotests/iotests.py for reporting a positive
> value.
>
> CC: qemu-trivial@nongnu.org
> Signed-off-by: Eric Blake <eblake@redhat.com>
> ---
> scripts/qemu.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/qemu.py b/scripts/qemu.py
> index 6e3b0e67719..0a5e02eb56e 100644
> --- a/scripts/qemu.py
> +++ b/scripts/qemu.py
> @@ -351,7 +351,7 @@ class QEMUMachine(object):
> command = ' '.join(self._qemu_full_args)
> else:
> command = ''
> - LOG.warn(msg, exitcode, command)
> + LOG.warn(msg, -exitcode, command)
What about displaying signal name directly?
import signal
...
msg = 'qemu received %s: %s'
...
LOG.warn(msg, signal.Signals(-exitcode).name, command)
>
> self._launched = False
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] qemu.py: Fix error message when qemu dies from signal
2019-01-14 11:04 ` Philippe Mathieu-Daudé
@ 2019-01-14 15:36 ` Eric Blake
2019-01-14 16:54 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 4+ messages in thread
From: Eric Blake @ 2019-01-14 15:36 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: qemu-trivial, Eduardo Habkost, Cleber Rosa
[-- Attachment #1: Type: text/plain, Size: 1196 bytes --]
On 1/14/19 5:04 AM, Philippe Mathieu-Daudé wrote:
> Hi Eric,
>
> On 1/11/19 9:13 PM, Eric Blake wrote:
>> When qemu dies from a signal, the python code gets a negative
>> value for exitcode; but signal numbers are positive. Copy the
>> pattern used in qemu-iotests/iotests.py for reporting a positive
>> value.
>>
>> CC: qemu-trivial@nongnu.org
>> Signed-off-by: Eric Blake <eblake@redhat.com>
>> ---
>> scripts/qemu.py | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/qemu.py b/scripts/qemu.py
>> index 6e3b0e67719..0a5e02eb56e 100644
>> --- a/scripts/qemu.py
>> +++ b/scripts/qemu.py
>> @@ -351,7 +351,7 @@ class QEMUMachine(object):
>> command = ' '.join(self._qemu_full_args)
>> else:
>> command = ''
>> - LOG.warn(msg, exitcode, command)
>> + LOG.warn(msg, -exitcode, command)
>
> What about displaying signal name directly?
If you want to do that, it should be a separate patch, and fix
iotests.py at the same time.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3226
Virtualization: qemu.org | libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] qemu.py: Fix error message when qemu dies from signal
2019-01-14 15:36 ` Eric Blake
@ 2019-01-14 16:54 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-01-14 16:54 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: qemu-trivial, Eduardo Habkost, Cleber Rosa
[-- Attachment #1: Type: text/plain, Size: 1153 bytes --]
On 1/14/19 4:36 PM, Eric Blake wrote:
> On 1/14/19 5:04 AM, Philippe Mathieu-Daudé wrote:
>> Hi Eric,
>>
>> On 1/11/19 9:13 PM, Eric Blake wrote:
>>> When qemu dies from a signal, the python code gets a negative
>>> value for exitcode; but signal numbers are positive. Copy the
>>> pattern used in qemu-iotests/iotests.py for reporting a positive
>>> value.
>>>
>>> CC: qemu-trivial@nongnu.org
>>> Signed-off-by: Eric Blake <eblake@redhat.com>
>>> ---
>>> scripts/qemu.py | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/scripts/qemu.py b/scripts/qemu.py
>>> index 6e3b0e67719..0a5e02eb56e 100644
>>> --- a/scripts/qemu.py
>>> +++ b/scripts/qemu.py
>>> @@ -351,7 +351,7 @@ class QEMUMachine(object):
>>> command = ' '.join(self._qemu_full_args)
>>> else:
>>> command = ''
>>> - LOG.warn(msg, exitcode, command)
>>> + LOG.warn(msg, -exitcode, command)
>>
>> What about displaying signal name directly?
>
> If you want to do that, it should be a separate patch, and fix
> iotests.py at the same time.
Fair enough :)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-01-14 16:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-11 20:13 [Qemu-devel] [PATCH] qemu.py: Fix error message when qemu dies from signal Eric Blake
2019-01-14 11:04 ` Philippe Mathieu-Daudé
2019-01-14 15:36 ` Eric Blake
2019-01-14 16:54 ` Philippe Mathieu-Daudé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).