On (Wed) 10 Feb 2016 [16:53:24], Ladi Prosek wrote:
> RngBackend is now in charge of cleaning up the linked list on
> instance finalization. It also exposes a function to finalize
> individual RngRequest instances, called by its child classes.
>
> Signed-off-by: Ladi Prosek <[email protected]>
> @@ -183,8 +162,6 @@ static void rng_egd_finalize(Object *obj)
> }
>
> g_free(s->chr_name);
> -
> - rng_egd_free_requests(s);
Missing call to rng_backend_free_requests()?
> diff --git a/include/sysemu/rng.h b/include/sysemu/rng.h
> index 084164c..c2c9035 100644
> --- a/include/sysemu/rng.h
> +++ b/include/sysemu/rng.h
> @@ -61,6 +61,7 @@ struct RngBackend
> GSList *requests;
> };
>
> +
> /**
Extra whitespace?
Amit