Files
kvmtool/include/kvm/virtio-balloon.h
Sasha Levin d06db2fd4b kvm tools: virtio-bln init/exit
Make the init/exit of virtio-balloon self-contained, so the global init code
won't need to check if it was selected or not.

Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
2015-06-01 16:39:53 +01:00

10 lines
176 B
C

#ifndef KVM__BLN_VIRTIO_H
#define KVM__BLN_VIRTIO_H
struct kvm;
int virtio_bln__init(struct kvm *kvm);
int virtio_bln__exit(struct kvm *kvm);
#endif /* KVM__BLN_VIRTIO_H */