mirror of https://gitee.com/openkylin/qemu.git
virtio-rng: cleanup: init and exit functions.
This remove old init and exit function as they are no longer needed. Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Tested-by: Cornelia Huck <cornelia.huck@de.ibm.com> Acked-by: Amit Shah <amit.shah@redhat.com> Message-id: 1366790881-3026-7-git-send-email-fred.konrad@greensocs.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
2db26d4ca2
commit
46a5a89d65
|
@ -130,86 +130,11 @@ static void check_rate_limit(void *opaque)
|
|||
qemu_get_clock_ms(vm_clock) + s->conf.period_ms);
|
||||
}
|
||||
|
||||
static VirtIODevice *virtio_rng_common_init(DeviceState *dev,
|
||||
VirtIORNGConf *conf,
|
||||
VirtIORNG **pvrng)
|
||||
{
|
||||
VirtIORNG *vrng = *pvrng;
|
||||
VirtIODevice *vdev;
|
||||
Error *local_err = NULL;
|
||||
|
||||
/*
|
||||
* We have two cases here: the old virtio-rng-x device, and the
|
||||
* refactored virtio-rng.
|
||||
* This will disappear later in the serie.
|
||||
*/
|
||||
if (vrng == NULL) {
|
||||
vdev = virtio_common_init("virtio-rng", VIRTIO_ID_RNG, 0,
|
||||
sizeof(VirtIORNG));
|
||||
vrng = DO_UPCAST(VirtIORNG, vdev, vdev);
|
||||
} else {
|
||||
vdev = VIRTIO_DEVICE(vrng);
|
||||
virtio_init(vdev, "virtio-rng", VIRTIO_ID_RNG, 0);
|
||||
}
|
||||
|
||||
vrng->rng = conf->rng;
|
||||
if (vrng->rng == NULL) {
|
||||
qerror_report(QERR_INVALID_PARAMETER_VALUE, "rng", "a valid object");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
rng_backend_open(vrng->rng, &local_err);
|
||||
if (local_err) {
|
||||
qerror_report_err(local_err);
|
||||
error_free(local_err);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
vrng->vq = virtio_add_queue(vdev, 8, handle_input);
|
||||
|
||||
vrng->vdev.get_features = get_features;
|
||||
|
||||
vrng->qdev = dev;
|
||||
memcpy(&(vrng->conf), conf, sizeof(struct VirtIORNGConf));
|
||||
|
||||
assert(vrng->conf.max_bytes <= INT64_MAX);
|
||||
vrng->quota_remaining = vrng->conf.max_bytes;
|
||||
|
||||
vrng->rate_limit_timer = qemu_new_timer_ms(vm_clock,
|
||||
check_rate_limit, vrng);
|
||||
|
||||
qemu_mod_timer(vrng->rate_limit_timer,
|
||||
qemu_get_clock_ms(vm_clock) + vrng->conf.period_ms);
|
||||
|
||||
register_savevm(dev, "virtio-rng", -1, 1, virtio_rng_save,
|
||||
virtio_rng_load, vrng);
|
||||
|
||||
return vdev;
|
||||
}
|
||||
|
||||
/*
|
||||
* This two functions will be removed later in the serie.
|
||||
*/
|
||||
VirtIODevice *virtio_rng_init(DeviceState *dev, VirtIORNGConf *conf)
|
||||
{
|
||||
VirtIORNG *vdev = NULL;
|
||||
return virtio_rng_common_init(dev, conf, &vdev);
|
||||
}
|
||||
|
||||
void virtio_rng_exit(VirtIODevice *vdev)
|
||||
{
|
||||
VirtIORNG *vrng = DO_UPCAST(VirtIORNG, vdev, vdev);
|
||||
|
||||
qemu_del_timer(vrng->rate_limit_timer);
|
||||
qemu_free_timer(vrng->rate_limit_timer);
|
||||
unregister_savevm(vrng->qdev, "virtio-rng", vrng);
|
||||
virtio_cleanup(vdev);
|
||||
}
|
||||
|
||||
static int virtio_rng_device_init(VirtIODevice *vdev)
|
||||
{
|
||||
DeviceState *qdev = DEVICE(vdev);
|
||||
VirtIORNG *vrng = VIRTIO_RNG(vdev);
|
||||
Error *local_err = NULL;
|
||||
|
||||
if (vrng->conf.rng == NULL) {
|
||||
vrng->conf.default_backend = RNG_RANDOM(object_new(TYPE_RNG_RANDOM));
|
||||
|
@ -224,9 +149,39 @@ static int virtio_rng_device_init(VirtIODevice *vdev)
|
|||
"rng", NULL);
|
||||
}
|
||||
|
||||
if (virtio_rng_common_init(qdev, &(vrng->conf), &vrng) == NULL) {
|
||||
virtio_init(vdev, "virtio-rng", VIRTIO_ID_RNG, 0);
|
||||
|
||||
vrng->rng = vrng->conf.rng;
|
||||
if (vrng->rng == NULL) {
|
||||
qerror_report(QERR_INVALID_PARAMETER_VALUE, "rng", "a valid object");
|
||||
return -1;
|
||||
}
|
||||
|
||||
rng_backend_open(vrng->rng, &local_err);
|
||||
if (local_err) {
|
||||
qerror_report_err(local_err);
|
||||
error_free(local_err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
vrng->vq = virtio_add_queue(vdev, 8, handle_input);
|
||||
|
||||
vrng->vdev.get_features = get_features;
|
||||
|
||||
vrng->qdev = qdev;
|
||||
|
||||
assert(vrng->conf.max_bytes <= INT64_MAX);
|
||||
vrng->quota_remaining = vrng->conf.max_bytes;
|
||||
|
||||
vrng->rate_limit_timer = qemu_new_timer_ms(vm_clock,
|
||||
check_rate_limit, vrng);
|
||||
|
||||
qemu_mod_timer(vrng->rate_limit_timer,
|
||||
qemu_get_clock_ms(vm_clock) + vrng->conf.period_ms);
|
||||
|
||||
register_savevm(qdev, "virtio-rng", -1, 1, virtio_rng_save,
|
||||
virtio_rng_load, vrng);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -261,7 +261,6 @@ VirtIODevice *virtio_serial_init(DeviceState *dev, virtio_serial_conf *serial);
|
|||
typedef struct VirtIOSCSIConf VirtIOSCSIConf;
|
||||
VirtIODevice *virtio_scsi_init(DeviceState *dev, VirtIOSCSIConf *conf);
|
||||
typedef struct VirtIORNGConf VirtIORNGConf;
|
||||
VirtIODevice *virtio_rng_init(DeviceState *dev, VirtIORNGConf *conf);
|
||||
#ifdef CONFIG_VIRTFS
|
||||
VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf *conf);
|
||||
#endif
|
||||
|
@ -270,7 +269,6 @@ VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf *conf);
|
|||
void virtio_net_exit(VirtIODevice *vdev);
|
||||
void virtio_serial_exit(VirtIODevice *vdev);
|
||||
void virtio_scsi_exit(VirtIODevice *vdev);
|
||||
void virtio_rng_exit(VirtIODevice *vdev);
|
||||
|
||||
#define DEFINE_VIRTIO_COMMON_FEATURES(_state, _field) \
|
||||
DEFINE_PROP_BIT("indirect_desc", _state, _field, \
|
||||
|
|
Loading…
Reference in New Issue