Re: [PATCH V8 12/39] memory: flat section iterator

2022-07-05 Thread Steven Sistare
On 7/3/2022 3:52 AM, Peng Liang wrote: > On 6/15/2022 10:51 PM, Steve Sistare wrote: >> Add an iterator over the sections of a flattened address space. >> >> Signed-off-by: Steve Sistare >> Reviewed-by: Marc-André Lureau >> --- >> include/exec/memory.h | 31 +++ >> so

Re: [PATCH V8 12/39] memory: flat section iterator

2022-07-03 Thread Peng Liang
On 6/15/2022 10:51 PM, Steve Sistare wrote: > Add an iterator over the sections of a flattened address space. > > Signed-off-by: Steve Sistare > Reviewed-by: Marc-André Lureau > --- > include/exec/memory.h | 31 +++ > softmmu/memory.c | 20 +++

[PATCH V8 12/39] memory: flat section iterator

2022-06-15 Thread Steve Sistare
Add an iterator over the sections of a flattened address space. Signed-off-by: Steve Sistare Reviewed-by: Marc-André Lureau --- include/exec/memory.h | 31 +++ softmmu/memory.c | 20 2 files changed, 51 insertions(+) diff --git a/include/ex