Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions drivers/virtio-balloon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ void balloon::worker()
// target on a modest interval instead: ballooning is not latency-critical,
// and a sub-second reaction to memory pressure is fine.
//
// ponytail: polling because config-change IRQ is unwired in virtio core;
// drop the timer and wake purely on the config-change vector once that is
// plumbed (VIRTIO_MSI_CONFIG_VECTOR).
// TODO: polling because the config-change IRQ is unwired in the virtio
// core; drop the timer and wake purely on the config-change vector once
// that is plumbed (VIRTIO_MSI_CONFIG_VECTOR).
using namespace std::chrono;
WITH_LOCK(_mtx) {
while (!_shutdown) {
Expand Down