On 14.07.22 15:20, Alexander Atanasov wrote:
Hello,Which is the corner cases. You'd have to special case on DEFLATE_ON_OOM
On 14/07/2022 14:35, David Hildenbrand wrote:
On 05.07.22 10:36, Alexander Atanasov wrote:That is true only when not using DEFLATE_ON_OOM.
Allow the guest to know how much it is ballooned by the host.totalram is calculated from totalram_pages().
It is useful when debugging out of memory conditions.
When host gets back memory from the guest it is accounted
as used memory in the guest but the guest have no way to know
how much it is actually ballooned.
Signed-off-by: Alexander Atanasov <alexander.atanasov@xxxxxxxxxxxxx>
---
drivers/virtio/virtio_balloon.c | 77 +++++++++++++++++++++++++++++
include/uapi/linux/virtio_balloon.h | 1 +
2 files changed, 78 insertions(+)
V2:
- fixed coding style
- removed pretty print
V3:
- removed dublicate of features
- comment about balooned_pages more clear
- convert host pages to balloon pages
V4:
- added a define for BALLOON_PAGE_SIZE to make things clear
+ seq_printf(f, "%-22s: %u\n", "ballooned_pages", num_pages);
+
+ /* Total Memory for the guest from host */
+ seq_printf(f, "%-22s: %lu\n", "total_pages",
+ guest_to_balloon_pages(i.totalram));
When we inflate/deflate, we adjust totalram as well via
adjust_managed_page_count().
Otherwise inflated memory is accounted as used and total ram stays the same.
Consequently, this doesn't calculate what you actually want?My calculations are correct for the case deflate_on_oom is enabled.
Total memory would be totalram+inflated, current would be totalram.
availability.
What about an indication instead, whether or not inflated pages areBut, TBH, only export num_pages. User space can just lookup the otherI have missed that the memory accounting is made differently depending
information (totalram) via /proc/meminfo.
on a flag.
Since the calculations are different i'd prefer to have the values
calculate and printed there.
accounted into total or not? That would be slightly cleaner IMHO.