Commit f4225441 authored by Colin Ian King's avatar Colin Ian King Committed by Jakub Kicinski

net: mana: Fix spelling mistake "enforecement" -> "enforcement"

There is a spelling mistake in struct field hc_tx_err_sqpdid_enforecement.
Fix it.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarShradha Gupta <shradhagupta@linux.microsoft.com>
Link: https://lore.kernel.org/r/20231128095304.515492-1-colin.i.king@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 4b86d7c6
......@@ -2446,7 +2446,7 @@ void mana_query_gf_stats(struct mana_port_context *apc)
apc->eth_stats.hc_tx_err_eth_type_enforcement =
resp.tx_err_ethtype_enforcement;
apc->eth_stats.hc_tx_err_sa_enforcement = resp.tx_err_SA_enforcement;
apc->eth_stats.hc_tx_err_sqpdid_enforecement =
apc->eth_stats.hc_tx_err_sqpdid_enforcement =
resp.tx_err_SQPDID_enforcement;
apc->eth_stats.hc_tx_err_cqpdid_enforcement =
resp.tx_err_CQPDID_enforcement;
......
......@@ -43,8 +43,8 @@ static const struct {
offsetof(struct mana_ethtool_stats, hc_tx_err_eth_type_enforcement)},
{"hc_tx_err_sa_enforcement", offsetof(struct mana_ethtool_stats,
hc_tx_err_sa_enforcement)},
{"hc_tx_err_sqpdid_enforecement",
offsetof(struct mana_ethtool_stats, hc_tx_err_sqpdid_enforecement)},
{"hc_tx_err_sqpdid_enforcement",
offsetof(struct mana_ethtool_stats, hc_tx_err_sqpdid_enforcement)},
{"hc_tx_err_cqpdid_enforcement",
offsetof(struct mana_ethtool_stats, hc_tx_err_cqpdid_enforcement)},
{"hc_tx_err_mtu_violation", offsetof(struct mana_ethtool_stats,
......
......@@ -368,7 +368,7 @@ struct mana_ethtool_stats {
u64 hc_tx_err_vlan_enforcement;
u64 hc_tx_err_eth_type_enforcement;
u64 hc_tx_err_sa_enforcement;
u64 hc_tx_err_sqpdid_enforecement;
u64 hc_tx_err_sqpdid_enforcement;
u64 hc_tx_err_cqpdid_enforcement;
u64 hc_tx_err_mtu_violation;
u64 hc_tx_err_inval_oob;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment