[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] linux-user: fail and report on bad dfilter spec
From: |
Alex Bennée |
Subject: |
Re: [Qemu-devel] [PATCH] linux-user: fail and report on bad dfilter specs |
Date: |
Mon, 09 Sep 2019 15:00:18 +0100 |
User-agent: |
mu4e 1.3.4; emacs 27.0.50 |
Laurent Vivier <address@hidden> writes:
> Le 30/08/2019 à 16:36, Alex Bennée a écrit :
>> Just passing NULL means we end up ignoring the bad dfilter spec
>> instead of reporting it and exiting as we should.
>>
>> Signed-off-by: Alex Bennée <address@hidden>
>> ---
>> linux-user/main.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/linux-user/main.c b/linux-user/main.c
>> index 47917bbb20f..50a031520ca 100644
>> --- a/linux-user/main.c
>> +++ b/linux-user/main.c
>> @@ -236,7 +236,7 @@ static void handle_arg_log(const char *arg)
>>
>> static void handle_arg_dfilter(const char *arg)
>> {
>> - qemu_set_dfilter_ranges(arg, NULL);
>> + qemu_set_dfilter_ranges(arg, &error_fatal);
>> }
>>
>> static void handle_arg_log_filename(const char *arg)
>>
>
> Reviewed-by: Laurent Vivier <address@hidden>
Did you queue this or do you want me to resend?
--
Alex Bennée
- Re: [Qemu-devel] [PATCH] linux-user: fail and report on bad dfilter specs,
Alex Bennée <=