class BalloonController

Defined at line 7852 of file fidling/gen/sdk/fidl/fuchsia.virtualization/fuchsia.virtualization/hlcpp/fuchsia/virtualization/cpp/fidl.h

A `BalloonController` controls a guest instance's memory balloon.

Public Members

static const char[] Name_

Public Methods

void ~BalloonController ()
void GetBalloonSize (GetBalloonSizeCallback callback)

Get the current and requested number of pages in the memory balloon.

current_num_pages is the number of pages balloon has right now.

requested_num_pages is the desired number of pages in the balloon.

'current_num_pages' corresponds to the 'actual' virtio-balloon config field

'requested_num_pages' corresponds to the 'num_pages' virtio-balloon config field.

void RequestNumPages (uint32_t requested_num_pages)

Request a number of pages to be supplied to the memory balloon.

If `requested_num_pages` is greater than the `current_num_pages` config

value, the guest driver SHOULD provide additional pages to the memory balloon.

If `requested_num_pages` is less than the 'current_num_pages' config value,

the guest driver MAY reclaim pages from the memory balloon.

void GetMemStats (GetMemStatsCallback callback)

Get memory statistics of the guest instance.