File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
src/vmm/src/devices/virtio/net
integration_tests/functional Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -161,8 +161,6 @@ pub struct NetDeviceMetrics {
161161 pub rx_queue_event_count : SharedIncMetric ,
162162 /// Number of events associated with the rate limiter installed on the receiving path.
163163 pub rx_event_rate_limiter_count : SharedIncMetric ,
164- /// Number of RX partial writes to guest.
165- pub rx_partial_writes : SharedIncMetric ,
166164 /// Number of RX rate limiter throttling events.
167165 pub rx_rate_limiter_throttled : SharedIncMetric ,
168166 /// Number of events received on the associated tap.
@@ -233,8 +231,6 @@ impl NetDeviceMetrics {
233231 . add ( other. rx_queue_event_count . fetch_diff ( ) ) ;
234232 self . rx_event_rate_limiter_count
235233 . add ( other. rx_event_rate_limiter_count . fetch_diff ( ) ) ;
236- self . rx_partial_writes
237- . add ( other. rx_partial_writes . fetch_diff ( ) ) ;
238234 self . rx_rate_limiter_throttled
239235 . add ( other. rx_rate_limiter_throttled . fetch_diff ( ) ) ;
240236 self . rx_tap_event_count
Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ def validate_fc_metrics(metrics):
104104 "event_fails" ,
105105 "rx_queue_event_count" ,
106106 "rx_event_rate_limiter_count" ,
107- "rx_partial_writes" ,
108107 "rx_rate_limiter_throttled" ,
109108 "rx_tap_event_count" ,
110109 "rx_bytes_count" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ def verify_net_emulation_paused(metrics):
1313 """Verify net emulation is paused based on provided metrics."""
1414 net_metrics = metrics ["net" ]
1515 assert net_metrics ["rx_queue_event_count" ] == 0
16- assert net_metrics ["rx_partial_writes" ] == 0
1716 assert net_metrics ["rx_tap_event_count" ] == 0
1817 assert net_metrics ["rx_bytes_count" ] == 0
1918 assert net_metrics ["rx_packets_count" ] == 0
You can’t perform that action at this time.
0 commit comments