Re: [PATCH 2/3] scripts/performance: Add callgrind_top_25.py script

2020-06-17 Thread Ahmed Karaman
Thanks Mr. Alex for your suggestions. I will send a v2 of this series with the updates. On Wed, Jun 17, 2020 at 2:16 PM Alex Bennée wrote: > You will want the script to be +x if the user is to execute it. Thanks for the reminder. Forgot to do this before sending the patch. > > +# Print the

Re: [PATCH 2/3] scripts/performance: Add callgrind_top_25.py script

2020-06-17 Thread Alex Bennée
Ahmed Karaman writes: > Python script that prints the top 25 most executed functions in QEMU > using callgrind. > > Signed-off-by: Ahmed Karaman > --- > scripts/performance/callgrind_top_25.py | 95 + > 1 file changed, 95 insertions(+) > create mode 100644

Re: [PATCH 2/3] scripts/performance: Add callgrind_top_25.py script

2020-06-16 Thread Aleksandar Markovic
среда, 17. јун 2020., Ahmed Karaman је написао/ла: > Python script that prints the top 25 most executed functions in QEMU > using callgrind. > > Signed-off-by: Ahmed Karaman > --- I think you should add an example of script usage in the commit message (even though you mention such example in

[PATCH 2/3] scripts/performance: Add callgrind_top_25.py script

2020-06-16 Thread Ahmed Karaman
Python script that prints the top 25 most executed functions in QEMU using callgrind. Signed-off-by: Ahmed Karaman --- scripts/performance/callgrind_top_25.py | 95 + 1 file changed, 95 insertions(+) create mode 100644 scripts/performance/callgrind_top_25.py diff --git