diff --git a/builtin-stat.c b/builtin-stat.c index 855cc89..ffd72e8 100644 --- a/builtin-stat.c +++ b/builtin-stat.c @@ -12,11 +12,6 @@ #include -struct stat_cmd { - u32 type; - u32 len; -}; - static bool mem; static bool all; static const char *instance_name; @@ -52,7 +47,6 @@ void kvm_stat_help(void) static int do_memstat(const char *name, int sock) { - struct stat_cmd cmd = {KVM_IPC_STAT, 0}; struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR]; fd_set fdset; struct timeval t = { .tv_sec = 1 }; @@ -61,7 +55,7 @@ static int do_memstat(const char *name, int sock) FD_ZERO(&fdset); FD_SET(sock, &fdset); - r = write(sock, &cmd, sizeof(cmd)); + r = kvm_ipc__send(sock, KVM_IPC_STAT); if (r < 0) return r; diff --git a/virtio/balloon.c b/virtio/balloon.c index bd984b7..09044d0 100644 --- a/virtio/balloon.c +++ b/virtio/balloon.c @@ -144,6 +144,9 @@ static void virtio_bln__print_stats(int fd, u32 type, u32 len, u8 *msg) { int r; + if (WARN_ON(type != KVM_IPC_STAT || len)) + return; + if (virtio_bln__collect_stats() < 0) return;