diff --git a/drivers/virtio-balloon.cc b/drivers/virtio-balloon.cc index e20689c08..b861637cf 100644 --- a/drivers/virtio-balloon.cc +++ b/drivers/virtio-balloon.cc @@ -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) {