Re: [RFC PATCH] tests/qtest/fuzz: Add direct MemoryRegion fuzzer

2020-05-25 Thread Alexander Bulekov
On 200525 1927, Philippe Mathieu-Daudé wrote: > This is a proof-of-concept fuzzer that resolve a MemoryRegion > Object within the fuzzed QEMU process, then directly do > memory accesses using memory_region_dispatch_read/write calls. > > We avoid first the serialization of QTest strings, then the >

Re: [RFC PATCH] tests/qtest/fuzz: Add direct MemoryRegion fuzzer

2020-05-25 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200525172704.32142-1-f4...@amsat.org/ Hi, This series seems to have some coding style problems. See output below for more information: Message-id: 20200525172704.32142-1-f4...@amsat.org Subject: [RFC PATCH] tests/qtest/fuzz: Add direct MemoryRegion

[RFC PATCH] tests/qtest/fuzz: Add direct MemoryRegion fuzzer

2020-05-25 Thread Philippe Mathieu-Daudé
This is a proof-of-concept fuzzer that resolve a MemoryRegion Object within the fuzzed QEMU process, then directly do memory accesses using memory_region_dispatch_read/write calls. We avoid first the serialization of QTest strings, then the FlatView resolve and AddressSpace dispatch. Various TODO