|
@@ -30,6 +30,7 @@
|
|
|
#include <linux/balloon_compaction.h>
|
|
|
#include <linux/oom.h>
|
|
|
#include <linux/wait.h>
|
|
|
+#include <linux/mm.h>
|
|
|
|
|
|
/*
|
|
|
* Balloon device works in 4K page units. So each page is pointed to by
|
|
@@ -229,10 +230,13 @@ static void update_balloon_stats(struct virtio_balloon *vb)
|
|
|
unsigned long events[NR_VM_EVENT_ITEMS];
|
|
|
struct sysinfo i;
|
|
|
int idx = 0;
|
|
|
+ long available;
|
|
|
|
|
|
all_vm_events(events);
|
|
|
si_meminfo(&i);
|
|
|
|
|
|
+ available = si_mem_available();
|
|
|
+
|
|
|
update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
|
|
|
pages_to_bytes(events[PSWPIN]));
|
|
|
update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
|
|
@@ -243,6 +247,8 @@ static void update_balloon_stats(struct virtio_balloon *vb)
|
|
|
pages_to_bytes(i.freeram));
|
|
|
update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
|
|
|
pages_to_bytes(i.totalram));
|
|
|
+ update_stat(vb, idx++, VIRTIO_BALLOON_S_AVAIL,
|
|
|
+ pages_to_bytes(available));
|
|
|
}
|
|
|
|
|
|
/*
|