Files
nvethernetrm/include/mmc.h
Sanath Kumar Gampa 57c3bfb122 osi: core: Address review comments for M6B
Updated as per review comments from CR 214140

JIRA NET-1186

Change-Id: I4357d9dd8baa452afeff4e2b4919b135c7cbeb32
Signed-off-by: Sanath Kumar Gampa <sgampa@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/kernel/nvethernetrm/+/3022572
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com>
Reviewed-by: Narayan Reddy <narayanr@nvidia.com>
Reviewed-by: Bhadram Varka <vbhadram@nvidia.com>
Reviewed-by: Krishna Thota <kthota@nvidia.com>
Tested-by: Narayan Reddy <narayanr@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
2024-02-21 16:32:07 +05:30

93 lines
4.0 KiB
C

/*
* Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#ifndef INCLUDED_MMC_H
#define INCLUDED_MMC_H
#include <nvethernet_type.h>
#include "osi_common.h"
#ifdef MACSEC_SUPPORT
/**
* @brief The structure hold macsec statistics counters
*/
struct osi_macsec_mmc_counters {
/** This counter provides the number of controller port macsec
* untaged packets
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_no_tag;
/** This counter provides the number of controller port macsec
* untaged packets validateFrame != strict
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_untagged;
/** This counter provides the number of invalid tag or icv packets
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_bad_tag;
/** This counter provides the number of no sc lookup hit or sc match
* packets
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_no_sa_err;
/** This counter provides the number of no sc lookup hit or sc match
* packets validateFrame != strict
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_no_sa;
/** This counter provides the number of late packets
*received PN < lowest PN
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_late[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of overrun packets
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_overrun;
/** This counter provides the number of octets after IVC passing
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_octets_validated;
/** This counter provides the number not valid packets
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_not_valid[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of invalid packets
* valid values are between 0 and UINT64_MAX */
nveul64_t in_pkts_invalid[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of in packet delayed
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_delayed[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of in packets un checked
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_unchecked[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of in packets ok
* valid values are between 0 and UINT64_MAX */
nveul64_t rx_pkts_ok[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of out packets untaged
* valid values are between 0 and UINT64_MAX */
nveul64_t tx_pkts_untaged;
/** This counter provides the number of out too long
* valid values are between 0 and UINT64_MAX */
nveul64_t tx_pkts_too_long;
/** This counter provides the number of out packets protected
* valid values are between 0 and UINT64_MAX */
nveul64_t tx_pkts_protected[OSI_MACSEC_SC_INDEX_MAX];
/** This counter provides the number of out octets protected/
* valid values are between 0 and UINT64_MAX */
nveul64_t tx_octets_protected;
};
#endif /* MACSEC_SUPPORT */
#endif /* INCLUDED_MMC_H */