* Re: [PATCH v4 1/1] Create debugfs file with virtio balloon usage information [not found] <20220705083638.29669-1-alexander.atanasov@virtuozzo.com> @ 2022-07-05 8:59 ` Michael S. Tsirkin [not found] ` <f6b46a29-0f65-9081-5228-a1028fea2bef@virtuozzo.com> 2022-07-14 11:35 ` David Hildenbrand 1 sibling, 1 reply; 13+ messages in thread From: Michael S. Tsirkin @ 2022-07-05 8:59 UTC (permalink / raw) To: Alexander Atanasov; +Cc: virtualization, kernel, linux-kernel On Tue, Jul 05, 2022 at 08:36:37AM +0000, 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 | 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 > > diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c > index b9737da6c4dd..dc4ad584b947 100644 > --- a/drivers/virtio/virtio_balloon.c > +++ b/drivers/virtio/virtio_balloon.c > @@ -10,6 +10,7 @@ > #include <linux/virtio_balloon.h> > #include <linux/swap.h> > #include <linux/workqueue.h> > +#include <linux/debugfs.h> > #include <linux/delay.h> > #include <linux/slab.h> > #include <linux/module.h> > @@ -731,6 +732,77 @@ static void report_free_page_func(struct work_struct *work) > } > } > > +/* > + * DEBUGFS Interface > + */ > +#ifdef CONFIG_DEBUG_FS > + > +#define guest_to_balloon_pages(i) ((i)*VIRTIO_BALLOON_PAGES_PER_PAGE) > +/** > + * virtio_balloon_debug_show - shows statistics of balloon operations. > + * @f: pointer to the &struct seq_file. > + * @offset: ignored. > + * > + * Provides the statistics that can be accessed in virtio-balloon in the debugfs. > + * > + * Return: zero on success or an error code. > + */ > + > +static int virtio_balloon_debug_show(struct seq_file *f, void *offset) > +{ > + struct virtio_balloon *b = f->private; > + u32 num_pages; > + struct sysinfo i; > + > + si_meminfo(&i); > + > + seq_printf(f, "%-22s: %d\n", "page_size", VIRTIO_BALLOON_PAGE_SIZE); > + > + virtio_cread_le(b->vdev, struct virtio_balloon_config, actual, > + &num_pages); > + /* > + * Pages allocated by host from the guest memory. > + * Host inflates the balloon to get more memory. > + * Guest needs to deflate the balloon to get more memory. > + */ > + 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)); > + > + /* Current memory for the guest */ > + seq_printf(f, "%-22s: %lu\n", "current_pages", > + guest_to_balloon_pages(i.totalram) - num_pages); > + > + return 0; > +} > + > +DEFINE_SHOW_ATTRIBUTE(virtio_balloon_debug); > + > +static void virtio_balloon_debugfs_init(struct virtio_balloon *b) > +{ > + debugfs_create_file("virtio-balloon", 0444, NULL, b, > + &virtio_balloon_debug_fops); > +} > + > +static void virtio_balloon_debugfs_exit(struct virtio_balloon *b) > +{ > + debugfs_remove(debugfs_lookup("virtio-balloon", NULL)); > +} > + > +#else > + > +static inline void virtio_balloon_debugfs_init(struct virtio_balloon *b) > +{ > +} > + > +static inline void virtio_balloon_debugfs_exit(struct virtio_balloon *b) > +{ > +} > + > +#endif /* CONFIG_DEBUG_FS */ > + > #ifdef CONFIG_BALLOON_COMPACTION > /* > * virtballoon_migratepage - perform the balloon page migration on behalf of > @@ -1019,6 +1091,9 @@ static int virtballoon_probe(struct virtio_device *vdev) > > if (towards_target(vb)) > virtballoon_changed(vdev); > + > + virtio_balloon_debugfs_init(vb); > + > return 0; > > out_unregister_oom: > @@ -1065,6 +1140,8 @@ static void virtballoon_remove(struct virtio_device *vdev) > { > struct virtio_balloon *vb = vdev->priv; > > + virtio_balloon_debugfs_exit(vb); > + > if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) > page_reporting_unregister(&vb->pr_dev_info); > if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > 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) > #define VIRTIO_BALLOON_CMD_ID_STOP 0 > #define VIRTIO_BALLOON_CMD_ID_DONE 1 Did you run checkpatch on this? > -- > 2.25.1 _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <f6b46a29-0f65-9081-5228-a1028fea2bef@virtuozzo.com>]
* Re: [PATCH v4 1/1] Create debugfs file with virtio balloon usage information [not found] ` <f6b46a29-0f65-9081-5228-a1028fea2bef@virtuozzo.com> @ 2022-08-09 10:35 ` Michael S. Tsirkin 0 siblings, 0 replies; 13+ messages in thread From: Michael S. Tsirkin @ 2022-08-09 10:35 UTC (permalink / raw) To: Alexander Atanasov; +Cc: virtualization, kernel, linux-kernel On Tue, Jul 05, 2022 at 12:01:58PM +0300, Alexander Atanasov wrote: > > > 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) > > > #define VIRTIO_BALLOON_CMD_ID_STOP 0 > > > #define VIRTIO_BALLOON_CMD_ID_DONE 1 > > Did you run checkpatch on this? > > > Sure, i did: > > scripts/checkpatch.pl > ../outgoing/v4-0001-Create-debugfs-file-with-virtio-balloon-usage-inf.patch > total: 0 errors, 0 warnings, 108 lines checked > > ../outgoing/v4-0001-Create-debugfs-file-with-virtio-balloon-usage-inf.patch > has no obvious style problems and is ready for submission. Weird. There should be spaces around << I think. -- MST _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v4 1/1] Create debugfs file with virtio balloon usage information [not found] <20220705083638.29669-1-alexander.atanasov@virtuozzo.com> 2022-07-05 8:59 ` [PATCH v4 1/1] Create debugfs file with virtio balloon usage information Michael S. Tsirkin @ 2022-07-14 11:35 ` David Hildenbrand [not found] ` <123b7518-b0c9-171c-9596-73654691ee58@virtuozzo.com> [not found] ` <20220714132053.56323-1-alexander.atanasov@virtuozzo.com> 1 sibling, 2 replies; 13+ messages in thread From: David Hildenbrand @ 2022-07-14 11:35 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization On 05.07.22 10:36, 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 | 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 > > diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c > index b9737da6c4dd..dc4ad584b947 100644 > --- a/drivers/virtio/virtio_balloon.c > +++ b/drivers/virtio/virtio_balloon.c > @@ -10,6 +10,7 @@ > #include <linux/virtio_balloon.h> > #include <linux/swap.h> > #include <linux/workqueue.h> > +#include <linux/debugfs.h> > #include <linux/delay.h> > #include <linux/slab.h> > #include <linux/module.h> > @@ -731,6 +732,77 @@ static void report_free_page_func(struct work_struct *work) > } > } > > +/* > + * DEBUGFS Interface > + */ > +#ifdef CONFIG_DEBUG_FS > + > +#define guest_to_balloon_pages(i) ((i)*VIRTIO_BALLOON_PAGES_PER_PAGE) > +/** > + * virtio_balloon_debug_show - shows statistics of balloon operations. > + * @f: pointer to the &struct seq_file. > + * @offset: ignored. > + * > + * Provides the statistics that can be accessed in virtio-balloon in the debugfs. > + * > + * Return: zero on success or an error code. > + */ > + > +static int virtio_balloon_debug_show(struct seq_file *f, void *offset) > +{ > + struct virtio_balloon *b = f->private; > + u32 num_pages; > + struct sysinfo i; > + > + si_meminfo(&i); > + > + seq_printf(f, "%-22s: %d\n", "page_size", VIRTIO_BALLOON_PAGE_SIZE); > + > + virtio_cread_le(b->vdev, struct virtio_balloon_config, actual, > + &num_pages); > + /* > + * Pages allocated by host from the guest memory. > + * Host inflates the balloon to get more memory. > + * Guest needs to deflate the balloon to get more memory. > + */ Please drop that comment. This is basic virtio-balloon operation that must not be explained at this point. > + 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)); totalram is calculated from totalram_pages(). When we inflate/deflate, we adjust totalram as well via adjust_managed_page_count(). Consequently, this doesn't calculate what you actually want? Total memory would be totalram+inflated, current would be totalram. But, TBH, only export num_pages. User space can just lookup the other information (totalram) via /proc/meminfo. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <123b7518-b0c9-171c-9596-73654691ee58@virtuozzo.com>]
* Re: [PATCH v4 1/1] Create debugfs file with virtio balloon usage information [not found] ` <123b7518-b0c9-171c-9596-73654691ee58@virtuozzo.com> @ 2022-07-14 13:24 ` David Hildenbrand 0 siblings, 0 replies; 13+ messages in thread From: David Hildenbrand @ 2022-07-14 13:24 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization On 14.07.22 15:20, Alexander Atanasov wrote: > Hello, > > On 14/07/2022 14:35, David Hildenbrand wrote: >> On 05.07.22 10:36, 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 | 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 >>> >>> diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c >>> index b9737da6c4dd..dc4ad584b947 100644 >>> --- a/drivers/virtio/virtio_balloon.c >>> +++ b/drivers/virtio/virtio_balloon.c >>> @@ -10,6 +10,7 @@ >>> #include <linux/virtio_balloon.h> >>> #include <linux/swap.h> >>> #include <linux/workqueue.h> >>> +#include <linux/debugfs.h> >>> #include <linux/delay.h> >>> #include <linux/slab.h> >>> #include <linux/module.h> >>> @@ -731,6 +732,77 @@ static void report_free_page_func(struct work_struct *work) >>> } >>> } >>> >>> +/* >>> + * DEBUGFS Interface >>> + */ >>> +#ifdef CONFIG_DEBUG_FS >>> + >>> +#define guest_to_balloon_pages(i) ((i)*VIRTIO_BALLOON_PAGES_PER_PAGE) >>> +/** >>> + * virtio_balloon_debug_show - shows statistics of balloon operations. >>> + * @f: pointer to the &struct seq_file. >>> + * @offset: ignored. >>> + * >>> + * Provides the statistics that can be accessed in virtio-balloon in the debugfs. >>> + * >>> + * Return: zero on success or an error code. >>> + */ >>> + >>> +static int virtio_balloon_debug_show(struct seq_file *f, void *offset) >>> +{ >>> + struct virtio_balloon *b = f->private; >>> + u32 num_pages; >>> + struct sysinfo i; >>> + >>> + si_meminfo(&i); >>> + >>> + seq_printf(f, "%-22s: %d\n", "page_size", VIRTIO_BALLOON_PAGE_SIZE); >>> + >>> + virtio_cread_le(b->vdev, struct virtio_balloon_config, actual, >>> + &num_pages); >>> + /* >>> + * Pages allocated by host from the guest memory. >>> + * Host inflates the balloon to get more memory. >>> + * Guest needs to deflate the balloon to get more memory. >>> + */ >> Please drop that comment. This is basic virtio-balloon operation that >> must not be explained at this point. > > Ok > >>> + 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)); >> totalram is calculated from totalram_pages(). >> >> When we inflate/deflate, we adjust totalram as well via >> adjust_managed_page_count(). > > That is true only when not using DEFLATE_ON_OOM. > > Otherwise inflated memory is accounted as used and total ram stays the same. >> Consequently, this doesn't calculate what you actually want? >> Total memory would be totalram+inflated, current would be totalram. > > My calculations are correct for the case deflate_on_oom is enabled. > Which is the corner cases. You'd have to special case on DEFLATE_ON_OOM availability. >> But, TBH, only export num_pages. User space can just lookup the other >> information (totalram) via /proc/meminfo. > > I have missed that the memory accounting is made differently depending > on a flag. > > Since the calculations are different i'd prefer to have the values > calculate and printed there. What about an indication instead, whether or not inflated pages are accounted into total or not? That would be slightly cleaner IMHO. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20220714132053.56323-1-alexander.atanasov@virtuozzo.com>]
* Re: [PATCH v5 1/1] Create debugfs file with virtio balloon usage information [not found] ` <20220714132053.56323-1-alexander.atanasov@virtuozzo.com> @ 2022-07-18 11:35 ` David Hildenbrand [not found] ` <865e4da3-94fe-95dc-cbe3-161fa8c2146d@virtuozzo.com> 0 siblings, 1 reply; 13+ messages in thread From: David Hildenbrand @ 2022-07-18 11:35 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization 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 > > diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c > index b9737da6c4dd..e17f8cc71ba4 100644 > --- a/drivers/virtio/virtio_balloon.c > +++ b/drivers/virtio/virtio_balloon.c > @@ -10,6 +10,7 @@ > #include <linux/virtio_balloon.h> > #include <linux/swap.h> > #include <linux/workqueue.h> > +#include <linux/debugfs.h> > #include <linux/delay.h> > #include <linux/slab.h> > #include <linux/module.h> > @@ -731,6 +732,79 @@ static void report_free_page_func(struct work_struct *work) > } > } > > +/* > + * DEBUGFS Interface > + */ > +#ifdef CONFIG_DEBUG_FS > + > +#define guest_to_balloon_pages(i) ((i)*VIRTIO_BALLOON_PAGES_PER_PAGE) > +/** > + * virtio_balloon_debug_show - shows statistics of balloon operations. > + * @f: pointer to the &struct seq_file. > + * @offset: ignored. > + * > + * Provides the statistics that can be accessed in virtio-balloon in the debugfs. > + * > + * Return: zero on success or an error code. > + */ > + > +static int virtio_balloon_debug_show(struct seq_file *f, void *offset) > +{ > + struct virtio_balloon *b = f->private; Most other functions call this "vb". > + 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. > + > + virtio_cread_le(b->vdev, struct virtio_balloon_config, actual, > + &num_pages); What's wrong with vb->num_pages? I'd prefer not doing config access, if it can be avoided. > + > + 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. > + > + return 0; > +} > + > +DEFINE_SHOW_ATTRIBUTE(virtio_balloon_debug); > + > +static void virtio_balloon_debugfs_init(struct virtio_balloon *b) > +{ > + debugfs_create_file("virtio-balloon", 0444, NULL, b, > + &virtio_balloon_debug_fops); > +} > + > +static void virtio_balloon_debugfs_exit(struct virtio_balloon *b) > +{ > + debugfs_remove(debugfs_lookup("virtio-balloon", NULL)); > +} > + > +#else > + > +static inline void virtio_balloon_debugfs_init(struct virtio_balloon *b) > +{ > +} > + > +static inline void virtio_balloon_debugfs_exit(struct virtio_balloon *b) > +{ > +} > + > +#endif /* CONFIG_DEBUG_FS */ [...] > 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) -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <865e4da3-94fe-95dc-cbe3-161fa8c2146d@virtuozzo.com>]
* Re: [PATCH v5 1/1] Create debugfs file with virtio balloon usage information [not found] ` <865e4da3-94fe-95dc-cbe3-161fa8c2146d@virtuozzo.com> @ 2022-07-25 11:36 ` David Hildenbrand [not found] ` <20220726140831.72816-1-alexander.atanasov@virtuozzo.com> 0 siblings, 1 reply; 13+ messages in thread From: David Hildenbrand @ 2022-07-25 11:36 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization On 25.07.22 13:27, Alexander Atanasov wrote: > 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. Pages translate to KB. kB are easy to consume by humans instead of pages with variable apge sizes > >>> + >>> + 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. The host can only inflate in guest-page base sizes. How that translates to host-page base sizes is absolutely irrelevant. Who should care about pages? Absolutely irrelevant. Guest pages: kB / getpagesize() Logical balloon pages: kB / 4k Host pages: ??? > > 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? Let's keep this interface simple, please. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20220726140831.72816-1-alexander.atanasov@virtuozzo.com>]
* Re: [PATCH v6 1/2] Create debugfs file with virtio balloon usage information [not found] ` <20220726140831.72816-1-alexander.atanasov@virtuozzo.com> @ 2022-08-01 15:18 ` David Hildenbrand [not found] ` <3a5e60e8-a0d2-a1f1-28e9-e0b45069029a@virtuozzo.com> [not found] ` <20220726141047.72913-1-alexander.atanasov@virtuozzo.com> 2022-08-09 10:44 ` [PATCH v6 1/2] Create debugfs file with virtio balloon usage information Michael S. Tsirkin 2 siblings, 1 reply; 13+ messages in thread From: David Hildenbrand @ 2022-08-01 15:18 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization On 26.07.22 16:08, Alexander Atanasov wrote: > Allow the guest to know how much it is ballooned by the host > and how that memory is accounted. > > It is useful when debugging out of memory conditions, > as well for userspace processes that monitor the memory pressure > and for nested virtualization. > > Depending on the deflate on oom flag memory is accounted in two ways. > If the flag is set the inflated pages are accounted as used memory. > If the flag is not set the inflated pages are substracted from totalram. > To make clear how are inflated pages accounted sign prefix the value. > Where negative means substracted from totalram and positive means > they are accounted as used. > > Signed-off-by: Alexander Atanasov <alexander.atanasov@virtuozzo.com> > --- > drivers/virtio/virtio_balloon.c | 59 +++++++++++++++++++++++++++++++++ > 1 file changed, 59 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 > V6: > - reduced the file to minimum > - unify accounting > > I didn't understand if you agree to change the accounting to be the same > so following part 2 is about it. > > > diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c > index f4c34a2a6b8e..97d3b29cb9f1 100644 > --- a/drivers/virtio/virtio_balloon.c > +++ b/drivers/virtio/virtio_balloon.c > @@ -10,6 +10,7 @@ > #include <linux/virtio_balloon.h> > #include <linux/swap.h> > #include <linux/workqueue.h> > +#include <linux/debugfs.h> > #include <linux/delay.h> > #include <linux/slab.h> > #include <linux/module.h> > @@ -731,6 +732,59 @@ static void report_free_page_func(struct work_struct *work) > } > } > > +/* > + * DEBUGFS Interface > + */ > +#ifdef CONFIG_DEBUG_FS > + > +/** > + * virtio_balloon_debug_show - shows statistics of balloon operations. > + * @f: pointer to the &struct seq_file. > + * @offset: ignored. > + * > + * Provides the statistics that can be accessed in virtio-balloon in the debugfs. > + * > + * Return: zero on success or an error code. > + */ > + Superfluous empty line. Personally, I'd just get rid of this (comparatively obvious) documentation completely. > +static int virtio_balloon_debug_show(struct seq_file *f, void *offset) > +{ > + struct virtio_balloon *vb = f->private; > + s64 num_pages = vb->num_pages << (VIRTIO_BALLOON_PFN_SHIFT - 10); Rather call this "inflated_kb" then, it's no longer "pages". > + > + if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > + num_pages = -num_pages; With VIRTIO_BALLOON_F_DEFLATE_ON_OOM this will now always report "0". which would be the same as "num_pages = 0;" and would deserve a comment explaining why we don't indicate that as "inflated: ". Thanks. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <3a5e60e8-a0d2-a1f1-28e9-e0b45069029a@virtuozzo.com>]
* Re: [PATCH v6 1/2] Create debugfs file with virtio balloon usage information [not found] ` <3a5e60e8-a0d2-a1f1-28e9-e0b45069029a@virtuozzo.com> @ 2022-08-01 20:12 ` David Hildenbrand [not found] ` <2dfad5c8-59d2-69a1-cc4c-d530c12ceea9@virtuozzo.com> 0 siblings, 1 reply; 13+ messages in thread From: David Hildenbrand @ 2022-08-01 20:12 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization >>> + >>> + if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) >>> + num_pages = -num_pages; >> With VIRTIO_BALLOON_F_DEFLATE_ON_OOM this will now always report "0". >> >> which would be the same as "num_pages = 0;" and would deserve a comment >> explaining why we don't indicate that as "inflated: ". >> >> Thanks. > > Except if "now" refers to some commit that i am missing it does not report 0. /me facepalm I read "-= num_pages" > > > with qemu-system-x86_64 -enable-kvm -device virtio-balloon,id=balloon0,deflate-on-oom=on,notify_on_empty=on,page-per-vq=on -m 3G .... > > / # cat /sys/kernel/debug/virtio-balloon > inflated: 0 kB > / # QEMU 4.2.1 monitor - type 'help' for more information > (qemu) balloon 1024 > (qemu) > > / # cat /sys/kernel/debug/virtio-balloon > inflated: 2097152 kB > / # > > with qemu-system-x86_64 -enable-kvm -device > virtio-balloon,id=balloon0,deflate-on-oom=off,notify_on_empty=on,page-per-vq=on > -m 3G ... > > / # cat /sys/kernel/debug/virtio-balloon > inflated: 0 kB > / # QEMU 4.2.1 monitor - type 'help' for more information > (qemu) balloon 1024 > (qemu) > / # cat /sys/kernel/debug/virtio-balloon > inflated: -2097152 kB What's the rationale of making it negative? > > To join the threads: > >>> Always account inflated memory as used for both cases - with and >>> without deflate on oom. Do not change total ram which can confuse >>> userspace and users. > >> Sorry, but NAK. > > Ok. > >> This would affect existing users / user space / balloon stats. For example >> HV just recently switch to properly using adjust_managed_page_count() > > > I am wondering what's the rationale behind this i have never seen such users > that expect it to work like this. Do you have any pointers to such users, so > i can understood why they do so ? We adjust total pages and managed pages to simulate what memory is actually available to the system (just like during memory hot(un)plug). Even though the pages are "allocated" by the driver, they are actually unusable for the system, just as if they would have been offlined. Strictly speaking, the guest OS can kill as many processes as it wants, it cannot reclaim that memory, as it's logically no longer available. There is nothing (valid, well, except driver unloading) the guest can do to reuse these pages. The hypervisor has to get involved first to grant access to some of these pages again (deflate the balloon). It's different with deflate-on-oom: the guest will *itself* decide to reuse inflated pages to deflate them. So the allocated pages can become back usable easily. There was a recent discussion for virtio-balloon to change that behavior when it's known that the hypervisor essentially implements "deflate-on-oom" by looking at guest memory stats and adjusting the balloon size accordingly; however, as long as we don't know what the hypervisor does or doesn't do, we have to keep the existing behavior. Note that most balloon drivers under Linux share that behavior. In case of Hyper-V I remember a customer BUG report that requested that exact behavior, however, I'm not able to locate the BZ quickly. [1] https://lists.linuxfoundation.org/pipermail/virtualization/2021-November/057767.html (note that I can't easily find the original mail in the archives) Note: I suggested under [1] to expose inflated pages via /proc/meminfo directly. We could do that consistently over all balloon drivers ... doesn't sound too crazy. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <2dfad5c8-59d2-69a1-cc4c-d530c12ceea9@virtuozzo.com>]
* Re: [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) [not found] ` <2dfad5c8-59d2-69a1-cc4c-d530c12ceea9@virtuozzo.com> @ 2022-08-02 13:48 ` David Hildenbrand [not found] ` <7bfac48d-2e50-641b-6523-662ea4df0240@virtuozzo.com> 0 siblings, 1 reply; 13+ messages in thread From: David Hildenbrand @ 2022-08-02 13:48 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: Juergen Gross, Wei Liu, Stefano Stabellini, Stephen Hemminger, Arnd Bergmann, Greg Kroah-Hartman, Haiyang Zhang, linux-kernel, virtualization, kernel, stevensd, Johannes Weiner, Nadav Amit, Boris Ostrovsky, Andrew Morton >> >> In case of Hyper-V I remember a customer BUG report that requested that >> exact behavior, however, I'm not able to locate the BZ quickly. >> [1] https://lists.linuxfoundation.org/pipermail/virtualization/2021-November/057767.html >> (note that I can't easily find the original mail in the archives) > > VMWare does not, Xen do, HV do (but it didn't) - Virtio does both. > > For me the confusion comes from mixing ballooning and hot plug. For example, QEMU (and even libvirt) doesn't even have built in support for any kind of automatic balloon resizing on guest memory pressure (and I'm happy that we don't implement any such heuristics). As a user/admin, all you can do is manually adjust the logical VM size by requesting to inflate/deflate the balloon. For virtio-balloon, we cannot derive what the hypervisor/admin might or might not do -- and whether the admin intends to use memory ballooning for memory hotunplug or for optimizing memory overcommit. As another example, HV dynamic memory actually combines memory hotplug with memory ballooning: use memory hotplug to add more memory on demand and use memory ballooning to logically unplug memory again. The VMWare balloon is a bit special, because it actually usually implements deflate-on-oom semantics in the hypervisor. IIRC, the hypervisor will actually adjust the balloon size based on guest memory stats, and there isn't really an interface to manually set the balloon size for an admin. But I might be wrong regarding the latter. > > Ballooning is like a heap inside the guest from which the host can > allocate/deallocate pages, if there is a mechanism for the guest to ask > the host for more/to free/ pages or the host have a heuristic to monitor > the guest and inflate/deflate the guest it is a matter of implementation. Please don't assume that the use case for memory ballooning is only optimizing memory overcommit in the hypervisor under memory pressure. > > Hot plug is adding to MemTotal and it is not a random event either in > real or virtual environment - so you can act upon it. MemTotal goes > down on hot unplug and if pages get marked as faulty RAM. "not a random event either" -- sure, with ppc dlpar, xen balloon, hv balloon or virtio-mem ... which all are able to hotplug memory fairly randomly based on hypervisor decisions. In physical environments, it's not really a random event, I agree. > > Historically MemTotal is a stable value ( i agree with most of David > Stevens points) and user space is expecting it to be stable , > initialized at startup and it does not expect it to change. Just like some apps are not prepared for memory hot(un)plug. Some apps just don't work in environments with variable physical memory sizes: examples include databases, where memory ballooning might essentially be completely useless (there is a paper about application-aware memory ballooning for that exact use case). > > Used is what changes and that is what user space expects to change. > > Delfate on oom might have been a mistake but it is there and if anything > depends on changing MemTotal it will be broken by that option. How > that can be fixed? I didn't quite get your concern here. Deflate-on-oom in virtio-balloon won't adjust MemTotal, so under which condition would be something broken? > > I agree that the host can not reclaim what is marked as used but should > it be able to ? May be it will be good to teach oom killer that there > can be such ram that can not be reclaimed. > >> Note: I suggested under [1] to expose inflated pages via /proc/meminfo >> directly. We could do that consistently over all balloon drivers ... >> doesn't sound too crazy. > > Initally i wanted to do exactly this BUT: > - some drivers prefer to expose some more internal information in the file. They always can have an extended debugfs interface in addition. > - a lot of user space is using meminfo so better keep it as is to avoid breaking something, ballooning is not very frequently used. We can always extend. Just recently, we exposed Zswap data: commit f6498b776d280b30a4614d8261840961e993c2c8 Author: Johannes Weiner <hannes@cmpxchg.org> Date: Thu May 19 14:08:53 2022 -0700 mm: zswap: add basic meminfo and vmstat coverage Exposing information about inflated pages in a generic way doesn't sound completely wrong to me, but there might be people that object. > > > Please, share your view on how the ballooned memory should be accounted by the drivers inside the guests so we can work towards consistent behaviour: > > Should the inflated memory be accounted as Used or MemTotal be adjusted? I hope I was able to make it clear that it completely depends on how memory ballooning is actually intended to be used. It's not uncommon to use it as form of fake memory hotunplug, where that memory is actually gone for good and won't simply come back when under memory pressure. > > Should the inflated memory be added to /proc/meminfo ? My gut feeling is yes. The interesting question remains, how to distinguish the two use cases (inflated memory subtracted from MemTotal or subtracted from MemFree). I'm not sure if we even want to unify balloon handling reagrding adjusting managed pages. IMHO, there are good reasons to do it either way. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <7bfac48d-2e50-641b-6523-662ea4df0240@virtuozzo.com>]
* Re: [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) [not found] ` <7bfac48d-2e50-641b-6523-662ea4df0240@virtuozzo.com> @ 2022-08-09 10:03 ` David Hildenbrand 0 siblings, 0 replies; 13+ messages in thread From: David Hildenbrand @ 2022-08-09 10:03 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: Juergen Gross, Wei Liu, Stefano Stabellini, Stephen Hemminger, Arnd Bergmann, Greg Kroah-Hartman, Haiyang Zhang, linux-kernel, virtualization, kernel, stevensd, Johannes Weiner, Nadav Amit, Boris Ostrovsky, Andrew Morton On 09.08.22 11:36, Alexander Atanasov wrote: > Hello, > > On 2.08.22 16:48, David Hildenbrand wrote: >>>> >>>> In case of Hyper-V I remember a customer BUG report that requested that >>>> exact behavior, however, I'm not able to locate the BZ quickly. >>>> [1] https://lists.linuxfoundation.org/pipermail/virtualization/2021-November/057767.html >>>> (note that I can't easily find the original mail in the archives) >>> >>> VMWare does not, Xen do, HV do (but it didn't) - Virtio does both. >>> >>> For me the confusion comes from mixing ballooning and hot plug. >> >> For example, QEMU (and even libvirt) doesn't even have built in support >> for any kind of automatic balloon resizing on guest memory pressure (and >> I'm happy that we don't implement any such heuristics). As a user/admin, >> all you can do is manually adjust the logical VM size by requesting to >> inflate/deflate the balloon. For virtio-balloon, we cannot derive what >> the hypervisor/admin might or might not do -- and whether the admin >> intends to use memory ballooning for memory hotunplug or for optimizing > memory overcommit. > > Is the lack of proper hotplug/unplug leading the admins to use it like > this? Yes. Especially unplug is tricky and hard to get working reliably in practice because of unmovable pages. Ballooning is an easy hack to get unplug somewhat working. For reference: under Windows ballooning was (and maybe still mostly is) the only way to unplug memory again. Unplug of DIMMs is not supported. > I really don't understand why you don't like automatic resizing - > both HyperV and VMWare do it ? You need heuristics to guess what the guest might be doing next and deflate fast enough to avoid any kind of OOMs in the guest. I pretty much dislike that concept, because it just screams to be fragile. In short: I don't like ballooning, to me it's a technology from ancient times before we were able to do any better. In comparison, I do like free page reporting for optimizing memory overcommit, but it still has some drawbacks (caches consuming too much memory), that people are working on to improve. So we're stuck with ballooning for now for some use cases. Personally, I consider any balloon extensions (inflate/deflate, not things like free page reporting) a waste of time and effort, but that's just my humble opinion. So I keep reviewing and maintaining them ;) > >> As another example, HV dynamic memory actually combines memory hotplug >> with memory ballooning: use memory hotplug to add more memory on demand >> and use memory ballooning to logically unplug memory again. > > Have both as an options - min/max memory , percentage free to keep as > minimum, fixed size and have hot add - kind of hot plug to go above > initial max - tries to manage it in dynamic way. > >> The VMWare balloon is a bit special, because it actually usually >> implements deflate-on-oom semantics in the hypervisor. IIRC, the >> hypervisor will actually adjust the balloon size based on guest memory >> stats, and there isn't really an interface to manually set the balloon >> size for an admin. But I might be wrong regarding the latter. > > For me this is what makes sense - you have a limited amount of > physical RAM that you want to be used optimally by the guests. > Waiting for the admin to adjust the balloon would not give very > optimal results. Exactly. For the use case of optimizing memory overcommit in the hypervisor, you want deflate-on-oom semantics if you go with balloon inflation/deflation. > >> >>> >>> Ballooning is like a heap inside the guest from which the host can >>> allocate/deallocate pages, if there is a mechanism for the guest to ask >>> the host for more/to free/ pages or the host have a heuristic to monitor >>> the guest and inflate/deflate the guest it is a matter of implementation. >> >> Please don't assume that the use case for memory ballooning is only >> optimizing memory overcommit in the hypervisor under memory pressure. > > I understood that - currently it is used and as a way to do > hotplug/unplug. The question is if that is the right way to use it. People use it like that, and we have no control over that. I've heard of people using hotplug of DIMMs to increase VM memory and balloon inflation to hotunplug memory, to decrease VM memory. > >>> >>> Hot plug is adding to MemTotal and it is not a random event either in >>> real or virtual environment - so you can act upon it. MemTotal goes >>> down on hot unplug and if pages get marked as faulty RAM. >> >> "not a random event either" -- sure, with ppc dlpar, xen balloon, hv >> balloon or virtio-mem ... which all are able to hotplug memory fairly >> randomly based on hypervisor decisions. >> >> In physical environments, it's not really a random event, I agree. > > Even if it is not manual - if they do hotplug it is ok - you can track > hotplug events. But you can not track balloon events. I was already asking myself in the past if there should be notifiers when we inflate/deflate -- when we adjust MemTotal essentially. But I think there is a more fundamental problem: some things are just incompatible to any of that. > >> >>> >>> Historically MemTotal is a stable value ( i agree with most of David >>> Stevens points) and user space is expecting it to be stable , >>> initialized at startup and it does not expect it to change. >> >> Just like some apps are not prepared for memory hot(un)plug. Some apps >> just don't work in environments with variable physical memory sizes: >> examples include databases, where memory ballooning might essentially be >> completely useless (there is a paper about application-aware memory > ballooning for that exact use case). > > I would say that even the kernel is not prepared to work with changing > MemTotal - there are caches that are sized according to it - > While with hotplug there is a notifier and who is interested can use it. > With balloon inflate/deflate there is no way to do so , implementing > a clone of hotplug_memory_notifier doesn't sound right for me. Again, it completely depends on the use case. As a reference, we used to adjust MemTotal ever since virtio-balloon was introduce in the kernel (2003 !), which was almost 20 (!) years ago. I am not aware of many (any) complains. It's just what people actually do expect. Changing that suddenly is not ok. > > Same for the userspace - on a hotplug/unplug event you can restart your > database or any other process sensitive to the value of MemTotal. IMHO databases and any form of MemTotal changes are incomaptible, because databases are simply extreme memhogs. > >>> >>> Used is what changes and that is what user space expects to change. >>> >>> Delfate on oom might have been a mistake but it is there and if anything >>> depends on changing MemTotal it will be broken by that option. How >>> that can be fixed? >> >> I didn't quite get your concern here. Deflate-on-oom in virtio-balloon > won't adjust MemTotal, so under which condition would be something > broken? > > I mean the two ways of accounting - if a process depends on either > used or total to change it will break depending on the option . ... and I would argue that such applications are not designed for physical memory changes in any form. And not even for running concurrently with other applications. Yes, they might be compatible with deflate-on-oom. [...] >> Exposing information about inflated pages in a generic way doesn't sound >> completely wrong to me, but there might be people that object. >> > > Patch for /proc/meminfo coming next. Good! > >>> >>> >>> Please, share your view on how the ballooned memory should be accounted by the drivers inside the guests so we can work towards consistent behaviour: >>> >>> Should the inflated memory be accounted as Used or MemTotal be adjusted? >> >> I hope I was able to make it clear that it completely depends on how >> memory ballooning is actually intended to be used. It's not uncommon to >> use it as form of fake memory hotunplug, where that memory is actually >> gone for good and won't simply come back when under memory pressure. >> >>> >>> Should the inflated memory be added to /proc/meminfo ? >> >> My gut feeling is yes. The interesting question remains, how to >> distinguish the two use cases (inflated memory subtracted from MemTotal > or subtracted from MemFree). > > There are currently two options: > =========== RAM ===================| > |_Used Marker |_ Total Marker > > You either move Used marker or move Total to adjust. > For simplicity sign bit can be used. If an other way appears > the bit next to the sign bit can be used. > >> >> I'm not sure if we even want to unify balloon handling reagrding >> adjusting managed pages. IMHO, there are good reasons to do it either way. > > I think there is a need of clear rules based on what is correct and what > not. It seems that currently every hypervisor/driver is going the easy > way with hot plug/hot unplug vs inflate/deflate vs hot-add/hot-remove. > Now if i try to make my app "smart" about memory pressure i need to know > way too much about each current and future hypervisor. Yeah, I raised in the past that, for example for virtio-balloon, we'd need information (e.g., feature flag) from the hypervisor what it is actually going to do: whether it implements some form of deflate-on-oom such that you can allocate huge portions of memory and immediately get that memory freed up instead of running into OOMs and triggering application/kernel crashes. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20220726141047.72913-1-alexander.atanasov@virtuozzo.com>]
* Re: [PATCH v6 2/2] Unify how inflated memory is accounted in virtio balloon driver [not found] ` <20220726141047.72913-1-alexander.atanasov@virtuozzo.com> @ 2022-08-01 15:13 ` David Hildenbrand 2022-08-09 10:42 ` Michael S. Tsirkin 1 sibling, 0 replies; 13+ messages in thread From: David Hildenbrand @ 2022-08-01 15:13 UTC (permalink / raw) To: Alexander Atanasov, Michael S. Tsirkin, Jason Wang Cc: kernel, linux-kernel, virtualization On 26.07.22 16:10, Alexander Atanasov wrote: > Always account inflated memory as used for both cases - with and > without deflate on oom. Do not change total ram which can confuse > userspace and users. Sorry, but NAK. This would affect existing users / user space / balloon stats. For example HV just recently switch to properly using adjust_managed_page_count() commit d1df458cbfdb0c3384c03c7fbcb1689bc02a746c Author: Vitaly Kuznetsov <vkuznets@redhat.com> Date: Wed Dec 2 17:12:45 2020 +0100 hv_balloon: do adjust_managed_page_count() when ballooning/un-ballooning Unlike virtio_balloon/virtio_mem/xen balloon drivers, Hyper-V balloon driver does not adjust managed pages count when ballooning/un-ballooning and this leads to incorrect stats being reported, e.g. unexpected 'free' output. Note, the calculation in post_status() seems to remain correct: ballooned out pages are never 'available' and we manually add dm->num_pages_ballooned to 'commited'. -- Thanks, David / dhildenb _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v6 2/2] Unify how inflated memory is accounted in virtio balloon driver [not found] ` <20220726141047.72913-1-alexander.atanasov@virtuozzo.com> 2022-08-01 15:13 ` [PATCH v6 2/2] Unify how inflated memory is accounted in virtio balloon driver David Hildenbrand @ 2022-08-09 10:42 ` Michael S. Tsirkin 1 sibling, 0 replies; 13+ messages in thread From: Michael S. Tsirkin @ 2022-08-09 10:42 UTC (permalink / raw) To: Alexander Atanasov; +Cc: virtualization, kernel, linux-kernel On Tue, Jul 26, 2022 at 02:10:47PM +0000, Alexander Atanasov wrote: > Always account inflated memory as used for both cases - with and > without deflate on oom. Do not change total ram which can confuse > userspace and users. > > Signed-off-by: Alexander Atanasov <alexander.atanasov@virtuozzo.com> I only noticed this patch accidentally since it looked like part of discussion on an older patch. Please do not do this, each version should be its own thread, if you want to link to previous discussion provide a cover letter and do it there. > --- > drivers/virtio/virtio_balloon.c | 13 ++----------- > 1 file changed, 2 insertions(+), 11 deletions(-) > > diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c > index 97d3b29cb9f1..fa6ddec45fc4 100644 > --- a/drivers/virtio/virtio_balloon.c > +++ b/drivers/virtio/virtio_balloon.c > @@ -244,9 +244,6 @@ static unsigned fill_balloon(struct virtio_balloon *vb, size_t num) > > set_page_pfns(vb, vb->pfns + vb->num_pfns, page); > vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE; > - if (!virtio_has_feature(vb->vdev, > - VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > - adjust_managed_page_count(page, -1); > vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE; > } > > @@ -265,9 +262,6 @@ static void release_pages_balloon(struct virtio_balloon *vb, > struct page *page, *next; > > list_for_each_entry_safe(page, next, pages, lru) { > - if (!virtio_has_feature(vb->vdev, > - VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > - adjust_managed_page_count(page, 1); > list_del(&page->lru); > put_page(page); /* balloon reference */ > } We adjusted total ram with balloon usage for many years. I don't think we can just drop this accounting using "can confuse userspace" as a justification - any userspace that's confused by this has been confused since approximately forever. > @@ -750,12 +744,9 @@ static void report_free_page_func(struct work_struct *work) > static int virtio_balloon_debug_show(struct seq_file *f, void *offset) > { > struct virtio_balloon *vb = f->private; > - s64 num_pages = vb->num_pages << (VIRTIO_BALLOON_PFN_SHIFT - 10); > + u64 num_pages = vb->num_pages << (VIRTIO_BALLOON_PFN_SHIFT - 10); > > - if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > - num_pages = -num_pages; > - > - seq_printf(f, "inflated: %lld kB\n", num_pages); > + seq_printf(f, "inflated: %llu kB\n", num_pages); > > return 0; I don't much like it when patch 1 adds code only for patch 2 to drop it. > } > -- > 2.25.1 _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v6 1/2] Create debugfs file with virtio balloon usage information [not found] ` <20220726140831.72816-1-alexander.atanasov@virtuozzo.com> 2022-08-01 15:18 ` [PATCH v6 1/2] " David Hildenbrand [not found] ` <20220726141047.72913-1-alexander.atanasov@virtuozzo.com> @ 2022-08-09 10:44 ` Michael S. Tsirkin 2 siblings, 0 replies; 13+ messages in thread From: Michael S. Tsirkin @ 2022-08-09 10:44 UTC (permalink / raw) To: Alexander Atanasov; +Cc: virtualization, kernel, linux-kernel On Tue, Jul 26, 2022 at 02:08:27PM +0000, Alexander Atanasov wrote: > Allow the guest to know how much it is ballooned by the host > and how that memory is accounted. > > It is useful when debugging out of memory conditions, > as well for userspace processes that monitor the memory pressure > and for nested virtualization. Hmm. debugging is ok. monitoring/nested use-cases probably call for sysfs/procfs. > Depending on the deflate on oom flag memory is accounted in two ways. > If the flag is set the inflated pages are accounted as used memory. > If the flag is not set the inflated pages are substracted from totalram. > To make clear how are inflated pages accounted sign prefix the value. > Where negative means substracted from totalram and positive means > they are accounted as used. > > Signed-off-by: Alexander Atanasov <alexander.atanasov@virtuozzo.com> > --- > drivers/virtio/virtio_balloon.c | 59 +++++++++++++++++++++++++++++++++ > 1 file changed, 59 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 > V6: > - reduced the file to minimum > - unify accounting > > I didn't understand if you agree to change the accounting to be the same > so following part 2 is about it. > > > diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c > index f4c34a2a6b8e..97d3b29cb9f1 100644 > --- a/drivers/virtio/virtio_balloon.c > +++ b/drivers/virtio/virtio_balloon.c > @@ -10,6 +10,7 @@ > #include <linux/virtio_balloon.h> > #include <linux/swap.h> > #include <linux/workqueue.h> > +#include <linux/debugfs.h> > #include <linux/delay.h> > #include <linux/slab.h> > #include <linux/module.h> > @@ -731,6 +732,59 @@ static void report_free_page_func(struct work_struct *work) > } > } > > +/* > + * DEBUGFS Interface > + */ > +#ifdef CONFIG_DEBUG_FS > + > +/** > + * virtio_balloon_debug_show - shows statistics of balloon operations. > + * @f: pointer to the &struct seq_file. > + * @offset: ignored. > + * > + * Provides the statistics that can be accessed in virtio-balloon in the debugfs. > + * > + * Return: zero on success or an error code. > + */ > + > +static int virtio_balloon_debug_show(struct seq_file *f, void *offset) > +{ > + struct virtio_balloon *vb = f->private; > + s64 num_pages = vb->num_pages << (VIRTIO_BALLOON_PFN_SHIFT - 10); > + > + if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > + num_pages = -num_pages; > + > + seq_printf(f, "inflated: %lld kB\n", num_pages); > + > + return 0; > +} Can't we just have two attributes, without hacks like this one? > + > +DEFINE_SHOW_ATTRIBUTE(virtio_balloon_debug); > + > +static void virtio_balloon_debugfs_init(struct virtio_balloon *b) > +{ > + debugfs_create_file("virtio-balloon", 0444, NULL, b, > + &virtio_balloon_debug_fops); > +} > + > +static void virtio_balloon_debugfs_exit(struct virtio_balloon *b) > +{ > + debugfs_remove(debugfs_lookup("virtio-balloon", NULL)); > +} > + > +#else > + > +static inline void virtio_balloon_debugfs_init(struct virtio_balloon *b) > +{ > +} > + > +static inline void virtio_balloon_debugfs_exit(struct virtio_balloon *b) > +{ > +} > + > +#endif /* CONFIG_DEBUG_FS */ > + > #ifdef CONFIG_BALLOON_COMPACTION > /* > * virtballoon_migratepage - perform the balloon page migration on behalf of > @@ -1019,6 +1073,9 @@ static int virtballoon_probe(struct virtio_device *vdev) > > if (towards_target(vb)) > virtballoon_changed(vdev); > + > + virtio_balloon_debugfs_init(vb); > + > return 0; > > out_unregister_oom: > @@ -1065,6 +1122,8 @@ static void virtballoon_remove(struct virtio_device *vdev) > { > struct virtio_balloon *vb = vdev->priv; > > + virtio_balloon_debugfs_exit(vb); > + > if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) > page_reporting_unregister(&vb->pr_dev_info); > if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) > -- > 2.25.1 > > _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2022-08-09 10:44 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20220705083638.29669-1-alexander.atanasov@virtuozzo.com>
2022-07-05 8:59 ` [PATCH v4 1/1] Create debugfs file with virtio balloon usage information Michael S. Tsirkin
[not found] ` <f6b46a29-0f65-9081-5228-a1028fea2bef@virtuozzo.com>
2022-08-09 10:35 ` Michael S. Tsirkin
2022-07-14 11:35 ` David Hildenbrand
[not found] ` <123b7518-b0c9-171c-9596-73654691ee58@virtuozzo.com>
2022-07-14 13:24 ` David Hildenbrand
[not found] ` <20220714132053.56323-1-alexander.atanasov@virtuozzo.com>
2022-07-18 11:35 ` [PATCH v5 " David Hildenbrand
[not found] ` <865e4da3-94fe-95dc-cbe3-161fa8c2146d@virtuozzo.com>
2022-07-25 11:36 ` David Hildenbrand
[not found] ` <20220726140831.72816-1-alexander.atanasov@virtuozzo.com>
2022-08-01 15:18 ` [PATCH v6 1/2] " David Hildenbrand
[not found] ` <3a5e60e8-a0d2-a1f1-28e9-e0b45069029a@virtuozzo.com>
2022-08-01 20:12 ` David Hildenbrand
[not found] ` <2dfad5c8-59d2-69a1-cc4c-d530c12ceea9@virtuozzo.com>
2022-08-02 13:48 ` [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
[not found] ` <7bfac48d-2e50-641b-6523-662ea4df0240@virtuozzo.com>
2022-08-09 10:03 ` David Hildenbrand
[not found] ` <20220726141047.72913-1-alexander.atanasov@virtuozzo.com>
2022-08-01 15:13 ` [PATCH v6 2/2] Unify how inflated memory is accounted in virtio balloon driver David Hildenbrand
2022-08-09 10:42 ` Michael S. Tsirkin
2022-08-09 10:44 ` [PATCH v6 1/2] Create debugfs file with virtio balloon usage information Michael S. Tsirkin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).