mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-21 04:53:46 -04:00
virtio_balloon: introduce memory allocation stall counter
Memory allocation stall counter represents the performance/latency of memory allocation, expose this counter to the host side by virtio balloon device via out-of-bound way. Acked-by: David Hildenbrand <david@redhat.com> Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> Message-Id: <20240423034109.1552866-4-pizhenwei@bytedance.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
committed by
Michael S. Tsirkin
parent
6cf1c97dad
commit
c5b70a26aa
@@ -355,6 +355,8 @@ static inline unsigned int update_balloon_vm_stats(struct virtio_balloon *vb)
|
||||
{
|
||||
unsigned long events[NR_VM_EVENT_ITEMS];
|
||||
unsigned int idx = 0;
|
||||
unsigned int zid;
|
||||
unsigned long stall = 0;
|
||||
|
||||
all_vm_events(events);
|
||||
update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
|
||||
@@ -365,6 +367,12 @@ static inline unsigned int update_balloon_vm_stats(struct virtio_balloon *vb)
|
||||
update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
|
||||
update_stat(vb, idx++, VIRTIO_BALLOON_S_OOM_KILL, events[OOM_KILL]);
|
||||
|
||||
/* sum all the stall events */
|
||||
for (zid = 0; zid < MAX_NR_ZONES; zid++)
|
||||
stall += events[ALLOCSTALL_NORMAL - ZONE_NORMAL + zid];
|
||||
|
||||
update_stat(vb, idx++, VIRTIO_BALLOON_S_ALLOC_STALL, stall);
|
||||
|
||||
#ifdef CONFIG_HUGETLB_PAGE
|
||||
update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGALLOC,
|
||||
events[HTLB_BUDDY_PGALLOC]);
|
||||
|
||||
Reference in New Issue
Block a user