From: Alexander Atanasov <alexander.atanasov@virtuozzo.com>
To: David Hildenbrand <david@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>
Cc: kernel@openvz.org, virtualization@lists.linux-foundation.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 1/1] Create debugfs file with virtio balloon usage information
Date: Mon, 25 Jul 2022 14:27:47 +0300 [thread overview]
Message-ID: <865e4da3-94fe-95dc-cbe3-161fa8c2146d@virtuozzo.com> (raw)
In-Reply-To: <0b660226-28dc-1f1d-e22e-34805dc5b25d@redhat.com>
Hi,
On 18/07/2022 14:35, David Hildenbrand wrote:
> On 14.07.22 15:20, Alexander Atanasov wrote:
>> Allow the guest to know how much it is ballooned by the host.
>> 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@virtuozzo.com>
>> ---
>> drivers/virtio/virtio_balloon.c | 79 +++++++++++++++++++++++++++++
>> include/uapi/linux/virtio_balloon.h | 1 +
>> 2 files changed, 80 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
>> V5:
>> - Made the calculatons work properly for both ways of memory accounting
>> with or without deflate_on_oom
>> - dropped comment
>>
[....]
>> + u32 num_pages, total_pages, current_pages;
>> + struct sysinfo i;
>> +
>> + si_meminfo(&i);
>> +
>> + seq_printf(f, "%-22s: %d\n", "page_size", VIRTIO_BALLOON_PAGE_SIZE);
> Why? Either export all in ordinary page size or in kB. No need to
> over-complicate the interface with a different page size that users
> don't actually care about.
>
> I'd just stick to /proc/meminfo and use kB.
The point is to expose some internal balloon data. Balloon works with
pages not with kB and users can easily calculate kB.
>> +
>> + seq_printf(f, "%-22s: %u\n", "ballooned_pages", num_pages);
>> +
>> + if (virtio_has_feature(b->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) {
>> + total_pages = guest_to_balloon_pages(i.totalram);
>> + current_pages = guest_to_balloon_pages(i.totalram) - num_pages;
>> + } else {
>> + total_pages = guest_to_balloon_pages(i.totalram) + num_pages;
>> + current_pages = guest_to_balloon_pages(i.totalram);
>> + }
>> +
>> + /* Total Memory for the guest from host */
>> + seq_printf(f, "%-22s: %u\n", "total_pages", total_pages);
>> +
>> + /* Current memory for the guest */
>> + seq_printf(f, "%-22s: %u\n", "current_pages", current_pages);
> The think I detest about that interface (total/current) is that it's
> simply not correct -- because i.totalram for example doesn't include
> things like (similar to MemTotal in /proc/meminfo)
>
> a) crashkernel
> b) early boot allocations (e.g., memmap)
> c) any kind of possible memory (un)hotplug in the future
>
> I'd really suggest to just KIS and not mess with i.totalram.
>
> Exposing how much memory is inflated and some way to identify how that
> memory is accounted in /proc/meminfo should be good enough.
>
> E.g., the output here could simply be
>
> "Inflated: 1024 kB"
> "MemTotalReduced: 1024 kB"
>
> That would even allow in the future for flexibility when it comes to how
> much/what was actually subtracted from MemTotal.
The point of the debug interface is to expose some of the balloon driver
internals to the guest.
The users of this are user space processes that try to work according to
the memory pressure and nested virtualization.
I haven't seen one userspace software that expects total ram to change,
it should be constant with one exception hotplug. But if you do hotplug
RAM you know that and you can restart what you need to restart.
So instead of messing with totalram with adding or removing pages /it
would even be optimization since now it is done page by page/ i suggest
to just account the inflated memory as used as in the deflate_on_oom
case now. It is confusing and inconsistent as it is now. How to explain
to a vps user why his RAM is constantly changing?
And the file can go just to
inflated: <pages>
ballon_page_size: 4096
or
inflated: kB
I prefer pages because on theory guest and host can different size and
if at some point guest starts to make requests to the host for pages it
must somehow know what the host/balloon page is. Since you have all the
information at one place it is easy to calculate kB. But you can not
calculate pages from only kB.
Later on when hotplug comes it can add it's own data to the file so it
can be used to see the amount that is added to the total ram.
It can add
hotplugged: <pages>
What do you think?
>> diff --git a/include/uapi/linux/virtio_balloon.h b/include/uapi/linux/virtio_balloon.h
>> index ddaa45e723c4..f3ff7c4e5884 100644
>> --- a/include/uapi/linux/virtio_balloon.h
>> +++ b/include/uapi/linux/virtio_balloon.h
>> @@ -40,6 +40,7 @@
>>
>> /* Size of a PFN in the balloon interface. */
>> #define VIRTIO_BALLOON_PFN_SHIFT 12
>> +#define VIRTIO_BALLOON_PAGE_SIZE (1<<VIRTIO_BALLOON_PFN_SHIFT)
> We prefer extra spacing
>
> (1 << VIRTIO_BALLOON_PFN_SHIFT)
Ok, i am working on my bad habits - thanks! I'll address the style
issues and variable naming in the next version along with the future
feedback.
--
Regards,
Alexander Atanasov
next prev parent reply other threads:[~2022-07-25 11:28 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-05 8:36 [PATCH v4 " Alexander Atanasov
2022-07-05 8:59 ` Michael S. Tsirkin
2022-07-05 9:01 ` Alexander Atanasov
2022-08-09 10:35 ` Michael S. Tsirkin
2022-08-09 13:33 ` Alexander Atanasov
2022-07-13 16:25 ` Alexander Atanasov
2022-07-14 11:35 ` David Hildenbrand
2022-07-14 13:20 ` Alexander Atanasov
2022-07-14 13:24 ` David Hildenbrand
2022-07-14 13:35 ` Alexander Atanasov
2022-07-14 13:20 ` [PATCH v5 " Alexander Atanasov
2022-07-18 11:35 ` David Hildenbrand
2022-07-25 11:27 ` Alexander Atanasov [this message]
2022-07-25 11:36 ` David Hildenbrand
2022-07-26 14:08 ` [PATCH v6 1/2] " Alexander Atanasov
2022-07-26 14:10 ` [PATCH v6 2/2] Unify how inflated memory is accounted in virtio balloon driver Alexander Atanasov
2022-08-01 15:13 ` David Hildenbrand
2022-08-09 10:42 ` Michael S. Tsirkin
2022-08-01 15:18 ` [PATCH v6 1/2] Create debugfs file with virtio balloon usage information David Hildenbrand
2022-08-01 16:34 ` Alexander Atanasov
2022-08-01 20:12 ` David Hildenbrand
2022-08-02 8:53 ` [RFC] how the ballooned memory should be accounted by the drivers inside the guests? (was:[PATCH v6 1/2] Create debugfs file with virtio balloon usage information) Alexander Atanasov
2022-08-02 13:48 ` David Hildenbrand
2022-08-09 9:36 ` Alexander Atanasov
2022-08-09 9:49 ` [PATCH v1 1/2] Enable balloon drivers to report inflated memory Alexander Atanasov
2022-08-09 9:53 ` [PATCH v1 2/2] Drivers: virtio: balloon: Report " Alexander Atanasov
2022-08-09 17:44 ` Nadav Amit
2022-08-15 12:52 ` Alexander Atanasov
2022-08-15 16:05 ` Nadav Amit
2022-08-16 7:50 ` Alexander Atanasov
2022-08-09 10:32 ` [PATCH v1 1/2] Enable balloon drivers to report " Michael S. Tsirkin
2022-08-10 5:54 ` Alexander Atanasov
2022-08-10 6:05 ` Michael S. Tsirkin
2022-08-10 7:50 ` Alexander Atanasov
2022-08-10 9:16 ` Michael S. Tsirkin
2022-08-10 3:05 ` Muchun Song
2022-08-10 5:14 ` Alexander Atanasov
2022-08-09 10:03 ` [RFC] how the ballooned memory should be accounted by the drivers inside the guests? (was:[PATCH v6 1/2] Create debugfs file with virtio balloon usage information) David Hildenbrand
2022-08-09 10:44 ` [PATCH v6 1/2] Create debugfs file with virtio balloon usage information Michael S. Tsirkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=865e4da3-94fe-95dc-cbe3-161fa8c2146d@virtuozzo.com \
--to=alexander.atanasov@virtuozzo.com \
--cc=david@redhat.com \
--cc=jasowang@redhat.com \
--cc=kernel@openvz.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=virtualization@lists.linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®