add note for antelope version

Change-Id: I664921146ba480c0ae3a63695f59f4b4b5178f19
Signed-off-by: Meng Jie Min <Meng.Jie.Min@ibm.com>
(cherry picked from commit 42977cb929)
This commit is contained in:
Meng Jie Min 2024-01-02 10:03:00 +08:00 committed by Mengjie Min
parent 02be9da558
commit 6494d58a9e
1 changed files with 4 additions and 2 deletions

View File

@ -68,13 +68,15 @@ class ZVMInspector(virt_inspector.Inspector):
parameters=None,
rx_bytes=nic['nic_rx'],
rx_packets=nic['nic_fr_rx'],
# rx_bytes_delta was taken out from zcc
# rx_bytes_delta was taken out from zcc in ussuri version,
# and put it back because antelope version is needed.
rx_bytes_delta=None,
rx_errors=nic['nic_fr_rx_err'],
rx_drop=None,
tx_bytes=nic['nic_tx'],
tx_packets=nic['nic_fr_tx'],
# tx_bytes_delta was taken out from zcc
# tx_bytes_delta was taken out from zcc in ussuri version,
# and put it back because antelope version is needed.
tx_bytes_delta=None,
tx_errors=nic['nic_fr_tx_err'],
tx_drop=None