Add pkts_cnt_oversized to stats.

This commit is contained in:
davidcs 2017-06-20 21:17:05 +00:00
parent 57488d2ac8
commit 1f6b796f52
2 changed files with 3 additions and 0 deletions

View File

@ -1554,6 +1554,8 @@ qla_rcv_stats(qla_host_t *ha, q80_rcv_stats_t *rstat)
rstat->lro_flows_active);
device_printf(dev, "%s: pkts_droped_unknown\t\t%" PRIu64 "\n",
__func__, rstat->pkts_droped_unknown);
device_printf(dev, "%s: pkts_cnt_oversized\t\t%" PRIu64 "\n",
__func__, rstat->pkts_cnt_oversized);
}
static void

View File

@ -748,6 +748,7 @@ typedef struct _q80_rcv_stats {
uint64_t lro_flows_deleted;
uint64_t lro_flows_active;
uint64_t pkts_droped_unknown;
uint64_t pkts_cnt_oversized;
} __packed q80_rcv_stats_t;
typedef struct _q80_xmt_stats {