Skip to content

Commit

Permalink
virtio-rng: Keep the default backend out of VirtIORNGConf
Browse files Browse the repository at this point in the history
The default backend is only used within virtio_rng_device_realize().
Replace VirtIORNGConf member default_backend by a local variable.
Adjust its type to reduce conversions.

While there, pass &error_abort instead of NULL when failure would be a
programming error.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Message-Id: <20190820160615.14616-3-lvivier@redhat.com>
  • Loading branch information
Markus Armbruster authored and mstsirkin committed Sep 4, 2019
1 parent 6c4e9d4 commit 5f7655f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
20 changes: 9 additions & 11 deletions hw/virtio/virtio-rng.c
Expand Up @@ -19,6 +19,7 @@
#include "hw/virtio/virtio-rng.h"
#include "sysemu/rng.h"
#include "sysemu/runstate.h"
#include "sysemu/rng-random.h"
#include "qom/object_interfaces.h"
#include "trace.h"

Expand Down Expand Up @@ -192,27 +193,24 @@ static void virtio_rng_device_realize(DeviceState *dev, Error **errp)
}

if (vrng->conf.rng == NULL) {
vrng->conf.default_backend = RNG_RANDOM(object_new(TYPE_RNG_RANDOM));
Object *default_backend = object_new(TYPE_RNG_RANDOM);

user_creatable_complete(USER_CREATABLE(vrng->conf.default_backend),
user_creatable_complete(USER_CREATABLE(default_backend),
&local_err);
if (local_err) {
error_propagate(errp, local_err);
object_unref(OBJECT(vrng->conf.default_backend));
object_unref(default_backend);
return;
}

object_property_add_child(OBJECT(dev),
"default-backend",
OBJECT(vrng->conf.default_backend),
NULL);
object_property_add_child(OBJECT(dev), "default-backend",
default_backend, &error_abort);

/* The child property took a reference, we can safely drop ours now */
object_unref(OBJECT(vrng->conf.default_backend));
object_unref(default_backend);

object_property_set_link(OBJECT(dev),
OBJECT(vrng->conf.default_backend),
"rng", NULL);
object_property_set_link(OBJECT(dev), default_backend,
"rng", &error_abort);
}

vrng->rng = vrng->conf.rng;
Expand Down
2 changes: 0 additions & 2 deletions include/hw/virtio/virtio-rng.h
Expand Up @@ -14,7 +14,6 @@

#include "hw/virtio/virtio.h"
#include "sysemu/rng.h"
#include "sysemu/rng-random.h"
#include "standard-headers/linux/virtio_rng.h"

#define TYPE_VIRTIO_RNG "virtio-rng-device"
Expand All @@ -27,7 +26,6 @@ struct VirtIORNGConf {
RngBackend *rng;
uint64_t max_bytes;
uint32_t period_ms;
RngRandom *default_backend;
};

typedef struct VirtIORNG {
Expand Down

0 comments on commit 5f7655f

Please sign in to comment.