Skip to content

Commit 8eb2229

Browse files
committed
fix: insert missing activate_fails metrics increases
Make sure that whenever the activation of a virtio device fails, we set the `activate_fails` metric. Signed-off-by: Patrick Roy <[email protected]>
1 parent 057d0d8 commit 8eb2229

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/vmm/src/devices/virtio/block/vhost_user/device.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -336,13 +336,13 @@ impl<T: VhostUserHandleBackend + Send + 'static> VirtioDevice for VhostUserBlock
336336
// with guest driver as well.
337337
self.vu_handle
338338
.set_features(self.acked_features)
339-
.map_err(ActivateError::VhostUser)?;
340-
self.vu_handle
341-
.setup_backend(
342-
&mem,
343-
&[(0, &self.queues[0], &self.queue_evts[0])],
344-
&self.irq_trigger,
345-
)
339+
.and_then(|()| {
340+
self.vu_handle.setup_backend(
341+
&mem,
342+
&[(0, &self.queues[0], &self.queue_evts[0])],
343+
&self.irq_trigger,
344+
)
345+
})
346346
.map_err(|err| {
347347
self.metrics.activate_fails.inc();
348348
ActivateError::VhostUser(err)

src/vmm/src/devices/virtio/block/virtio/device.rs

+1
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,7 @@ impl VirtioDevice for VirtioBlock {
652652
}
653653

654654
if self.activate_evt.write(1).is_err() {
655+
self.metrics.activate_fails.inc();
655656
return Err(ActivateError::EventFd);
656657
}
657658
self.device_state = DeviceState::Activated(mem);

src/vmm/src/devices/virtio/net/device.rs

+1
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,7 @@ impl VirtioDevice for Net {
862862
}
863863

864864
if self.activate_evt.write(1).is_err() {
865+
self.metrics.activate_fails.inc();
865866
return Err(ActivateError::EventFd);
866867
}
867868
self.device_state = DeviceState::Activated(mem);

0 commit comments

Comments
 (0)