|
Description
|
in this snipped of code:
if (status != NETIF_RSP_OKAY) {
RING_GET_RESPONSE(&xnbp->xnb_rx_ring, prod)->status =
status;
} else {
xnbp->xnb_stat_opackets++;
xnbp->xnb_stat_obytes += len;
}
we currently don't record the fact the we get a status != NETIF_RSP_OKAY in kstats. For observability, we should have that.
|