Re: [PATCH V4 2/3] python: use qom-list-get

2025-07-16 Thread Markus Armbruster
John Snow writes: > On Fri, Jul 11, 2025, 10:47 AM Markus Armbruster wrote: [...] >> Exception ignored in: > 0x7fcfcd080d60> >> Traceback (most recent call last): >> File "/work/armbru/qemu/scripts/qmp/../../python/qemu/qmp/legacy.py", >> line 310, in __del__ >> self.close() >> File "/

Re: [PATCH V4 2/3] python: use qom-list-get

2025-07-15 Thread John Snow
On Fri, Jul 11, 2025, 10:47 AM Markus Armbruster wrote: > Steve Sistare writes: > > > Use qom-list-get to speed up the qom-tree command. > > > > Signed-off-by: Steve Sistare > > Quick test... Differences in output before and after match expectations > (see appended diff). > > New version: > >

Re: [PATCH V4 2/3] python: use qom-list-get

2025-07-11 Thread Steven Sistare
On 7/11/2025 12:50 PM, Markus Armbruster wrote: Steven Sistare writes: On 7/11/2025 10:47 AM, Markus Armbruster wrote: Steve Sistare writes: Use qom-list-get to speed up the qom-tree command. Signed-off-by: Steve Sistare Quick test... Differences in output before and after match expec

Re: [PATCH V4 2/3] python: use qom-list-get

2025-07-11 Thread Markus Armbruster
Steven Sistare writes: > On 7/11/2025 10:47 AM, Markus Armbruster wrote: >> Steve Sistare writes: >> >>> Use qom-list-get to speed up the qom-tree command. >>> >>> Signed-off-by: Steve Sistare >> >> Quick test... Differences in output before and after match expectations >> (see appended diff

Re: [PATCH V4 2/3] python: use qom-list-get

2025-07-11 Thread Steven Sistare
On 7/11/2025 10:47 AM, Markus Armbruster wrote: Steve Sistare writes: Use qom-list-get to speed up the qom-tree command. Signed-off-by: Steve Sistare Quick test... Differences in output before and after match expectations (see appended diff). New version: real0m0.446s user

Re: [PATCH V4 2/3] python: use qom-list-get

2025-07-11 Thread Markus Armbruster
Steve Sistare writes: > Use qom-list-get to speed up the qom-tree command. > > Signed-off-by: Steve Sistare Quick test... Differences in output before and after match expectations (see appended diff). New version: real0m0.446s user0m0.062s sys 0m0.017s Old version ba

[PATCH V4 2/3] python: use qom-list-get

2025-07-10 Thread Steve Sistare
Use qom-list-get to speed up the qom-tree command. Signed-off-by: Steve Sistare --- python/qemu/utils/qom.py| 43 +++-- python/qemu/utils/qom_common.py | 53 + 2 files changed, 78 insertions(+), 18 deletions(-) diff --g