mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-09-04 04:31:27 +00:00
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>
10 lines
176 B
C
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 */
|