On Tue, 24 Sep 2019 at 17:30, Richard Henderson <richard.hender...@linaro.org> wrote: > > On 9/10/19 2:56 AM, Beata Michalska wrote: > > +void qemu_ram_writeback(RAMBlock *block, ram_addr_t start, ram_addr_t > > length); > > + > > +/* Clear whole block of mem */ > > +#define qemu_ram_block_writeback(rb) \ > > + qemu_ram_writeback(rb, 0, rb->used_length) > > + > > Inline function, with its typechecking, is preferred. > > Noted. To be fixed in the next version.
BR Beata > r~