qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] simpletrace: build() missing 2 required positional arguments


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH] simpletrace: build() missing 2 required positional arguments
Date: Sun, 31 Jan 2021 20:56:23 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0

On 1/31/21 6:34 PM, Volker Rümelin wrote:
> Commit 4e66c9ef64 "tracetool: add input filename and line number to
> Event" forgot to add a line number and a filename argument at one
> build method call site.
> 
> Traceback (most recent call last):
>   File "./scripts/simpletrace.py", line 261, in <module>
>     run(Formatter())
>   File "./scripts/simpletrace.py", line 236, in run
>     process(events, sys.argv[2], analyzer, read_header=read_header)
>   File "./scripts/simpletrace.py", line 177, in process
>     dropped_event =
>       Event.build("Dropped_Event(uint64_t num_events_dropped)")
> TypeError: build() missing 2 required positional arguments:
>   'lineno' and 'filename'

Oops

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

> 
> Add the missing arguments.
> 
> Signed-off-by: Volker Rümelin <vr_qemu@t-online.de>
> ---
>  scripts/simpletrace.py | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/scripts/simpletrace.py b/scripts/simpletrace.py
> index 20f0026066..d61fb0bd87 100755
> --- a/scripts/simpletrace.py
> +++ b/scripts/simpletrace.py
> @@ -174,7 +174,9 @@ def process(events, log, analyzer, read_header=True):
>      if read_header:
>          read_trace_header(log)
>  
> -    dropped_event = Event.build("Dropped_Event(uint64_t num_events_dropped)")
> +    frameinfo = inspect.getframeinfo(inspect.currentframe())
> +    dropped_event = Event.build("Dropped_Event(uint64_t num_events_dropped)",
> +                                frameinfo.lineno + 1, frameinfo.filename)
>      edict = {"dropped": dropped_event}
>      idtoname = {dropped_event_id: "dropped"}
>  
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]