File tree 2 files changed +0
-5
lines changed
src/vmm/src/devices/virtio/net
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -189,8 +189,6 @@ pub struct NetDeviceMetrics {
189
189
pub tx_count : SharedIncMetric ,
190
190
/// Number of transmitted packets.
191
191
pub tx_packets_count : SharedIncMetric ,
192
- /// Number of TX partial reads from guest.
193
- pub tx_partial_reads : SharedIncMetric ,
194
192
/// Number of events associated with the transmitting queue.
195
193
pub tx_queue_event_count : SharedIncMetric ,
196
194
/// Number of events associated with the rate limiter installed on the transmitting path.
@@ -252,8 +250,6 @@ impl NetDeviceMetrics {
252
250
self . tx_count . add ( other. tx_count . fetch_diff ( ) ) ;
253
251
self . tx_packets_count
254
252
. add ( other. tx_packets_count . fetch_diff ( ) ) ;
255
- self . tx_partial_reads
256
- . add ( other. tx_partial_reads . fetch_diff ( ) ) ;
257
253
self . tx_queue_event_count
258
254
. add ( other. tx_queue_event_count . fetch_diff ( ) ) ;
259
255
self . tx_rate_limiter_event_count
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ def validate_fc_metrics(metrics):
117
117
"tx_fails" ,
118
118
"tx_count" ,
119
119
"tx_packets_count" ,
120
- "tx_partial_reads" ,
121
120
"tx_queue_event_count" ,
122
121
"tx_rate_limiter_event_count" ,
123
122
"tx_rate_limiter_throttled" ,
You can’t perform that action at this time.
0 commit comments