patch 'net/intel: fix use of non-recommended string functions' has been queued to stable release 24.11.7
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Mon Jul 6 12:20:25 CEST 2026
Hi,
FYI, your patch has been queued to stable release 24.11.7
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/05/26. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Queued patches are on a temporary branch at:
https://github.com/bluca/dpdk-stable
This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/530797a203ec42781699fe497400486d5e628f23
Thanks.
Luca Boccassi
---
>From 530797a203ec42781699fe497400486d5e628f23 Mon Sep 17 00:00:00 2001
From: Bruce Richardson <bruce.richardson at intel.com>
Date: Tue, 23 Jun 2026 12:22:21 +0100
Subject: [PATCH] net/intel: fix use of non-recommended string functions
[ upstream commit 11b3f7b6e2d6e64c54e4eaee4622ec2920071430 ]
Replace use of the strncpy and strcpy functions with the safer strlcpy
alternative, which both bounds-checks and guarantees null termination.
In the process also replace instances of strcat with strlcat where
appropriate.
Fixes: 2d823ecd671c ("net/cpfl: support device initialization")
Fixes: c4c59ae62793 ("net/cpfl: refactor flow parser")
Fixes: c10881d3ee74 ("net/cpfl: support flow prog action")
Fixes: 9481b0902efe ("net/ice: send driver version to firmware")
Fixes: 7f7cbf80bdb7 ("net/ice: factorize firmware loading")
Fixes: 549343c25db8 ("net/idpf: support device initialization")
Fixes: 484f8e407a94 ("net/igb: support xstats by ID")
Fixes: fca82a8accf9 ("net/ixgbe: support xstats by ID")
Fixes: e163c18a15b0 ("net/i40e: update ptype and pctype info")
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
Acked-by: Ciara Loftus <ciara.loftus at intel.com>
---
drivers/net/cpfl/cpfl_ethdev.c | 2 +-
drivers/net/cpfl/cpfl_flow_parser.c | 16 +++++++---------
drivers/net/e1000/igb_ethdev.c | 5 +++--
drivers/net/i40e/i40e_ethdev.c | 3 +--
drivers/net/ice/ice_ethdev.c | 16 +++++++---------
drivers/net/idpf/idpf_ethdev.c | 2 +-
drivers/net/ixgbe/ixgbe_ethdev.c | 5 +++--
7 files changed, 23 insertions(+), 26 deletions(-)
diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_ethdev.c
index 1817221652..cb19ff93ee 100644
--- a/drivers/net/cpfl/cpfl_ethdev.c
+++ b/drivers/net/cpfl/cpfl_ethdev.c
@@ -2315,7 +2315,7 @@ cpfl_adapter_ext_init(struct rte_pci_device *pci_dev, struct cpfl_adapter_ext *a
hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
adapter->host_id = get_running_host_id();
- strncpy(adapter->name, pci_dev->device.name, PCI_PRI_STR_SIZE);
+ strlcpy(adapter->name, pci_dev->device.name, sizeof(adapter->name));
rte_memcpy(&base->caps, &req_caps, sizeof(struct virtchnl2_get_capabilities));
diff --git a/drivers/net/cpfl/cpfl_flow_parser.c b/drivers/net/cpfl/cpfl_flow_parser.c
index e7deb619ee..b2cc7289ad 100644
--- a/drivers/net/cpfl/cpfl_flow_parser.c
+++ b/drivers/net/cpfl/cpfl_flow_parser.c
@@ -211,7 +211,7 @@ cpfl_flow_js_pattern_key_proto_field(json_t *ob_fields,
PMD_DRV_LOG(ERR, "The 'name' is too long.");
goto err;
}
- strncpy(js_field->fields[i].name, name, CPFL_JS_STR_SIZE - 1);
+ strlcpy(js_field->fields[i].name, name, CPFL_JS_STR_SIZE);
if (js_field->type == RTE_FLOW_ITEM_TYPE_ETH ||
js_field->type == RTE_FLOW_ITEM_TYPE_IPV4) {
@@ -647,8 +647,7 @@ cpfl_flow_js_mr_key(json_t *ob_mr_keys, struct cpfl_flow_js_mr_key *js_mr_key)
PMD_DRV_LOG(ERR, "The 'name' is too long.");
goto err;
}
- strncpy(js_mr_key->actions[i].prog.name, name,
- CPFL_JS_STR_SIZE - 1);
+ strlcpy(js_mr_key->actions[i].prog.name, name, CPFL_JS_STR_SIZE);
}
ob_param = json_object_get(object, "parameters");
@@ -673,8 +672,8 @@ cpfl_flow_js_mr_key(json_t *ob_mr_keys, struct cpfl_flow_js_mr_key *js_mr_key)
PMD_DRV_LOG(ERR, "The 'name' is too long.");
goto err;
}
- strncpy(js_mr_key->actions[i].prog.params[j].name, name,
- CPFL_JS_STR_SIZE - 1);
+ strlcpy(js_mr_key->actions[i].prog.params[j].name, name,
+ CPFL_JS_STR_SIZE);
}
ret = cpfl_json_t_to_uint16(subobject, "size", &value);
if (ret < 0) {
@@ -741,7 +740,7 @@ cpfl_flow_js_mr_layout(json_t *ob_layouts, struct cpfl_flow_js_mr_action_mod *js
PMD_DRV_LOG(ERR, "The 'hint' is too long.");
goto err;
}
- strncpy(js_mod->layout[i].hint, hint, CPFL_JS_STR_SIZE - 1);
+ strlcpy(js_mod->layout[i].hint, hint, CPFL_JS_STR_SIZE);
}
return 0;
@@ -787,7 +786,7 @@ cpfl_flow_js_mr_content(json_t *ob_content, struct cpfl_flow_js_mr_action_mod *j
PMD_DRV_LOG(ERR, "The 'type' is too long.");
goto err;
}
- strncpy(js_mod->content.fields[i].type, type, CPFL_JS_STR_SIZE - 1);
+ strlcpy(js_mod->content.fields[i].type, type, CPFL_JS_STR_SIZE);
ret = cpfl_json_t_to_uint16(object, "start", &start);
if (ret < 0) {
PMD_DRV_LOG(ERR, "Can not parse 'start'.");
@@ -1722,8 +1721,7 @@ cpfl_parse_check_prog_action(struct cpfl_flow_js_mr_key_action *key_act,
return -EINVAL;
if (param->has_name) {
mr_key_prog->has_name = TRUE;
- strncpy(mr_key_prog->name[param->index], param->name,
- CPFL_JS_STR_SIZE - 1);
+ strlcpy(mr_key_prog->name[param->index], param->name, CPFL_JS_STR_SIZE);
}
}
diff --git a/drivers/net/e1000/igb_ethdev.c b/drivers/net/e1000/igb_ethdev.c
index 4262c5446d..91425d7923 100644
--- a/drivers/net/e1000/igb_ethdev.c
+++ b/drivers/net/e1000/igb_ethdev.c
@@ -1981,8 +1981,9 @@ static int eth_igb_xstats_get_names_by_id(struct rte_eth_dev *dev,
PMD_INIT_LOG(ERR, "id value isn't valid");
return -1;
}
- strcpy(xstats_names[i].name,
- xstats_names_copy[ids[i]].name);
+ strlcpy(xstats_names[i].name,
+ xstats_names_copy[ids[i]].name,
+ sizeof(xstats_names[i].name));
}
return limit;
}
diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index 9080a42edd..0bc7394552 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -11998,8 +11998,7 @@ i40e_update_customized_ptype(struct rte_eth_dev *dev, uint8_t *pkg,
for (n = 0; n < proto_num; n++) {
if (proto[n].proto_id != proto_id)
continue;
- memset(name, 0, sizeof(name));
- strcpy(name, proto[n].name);
+ strlcpy(name, proto[n].name, sizeof(name));
PMD_DRV_LOG(INFO, "name = %s", name);
if (!strncasecmp(name, "PPPOE", 5))
ptype_mapping[i].sw_ptype |=
diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c
index a54a247389..ffdcaebc59 100644
--- a/drivers/net/ice/ice_ethdev.c
+++ b/drivers/net/ice/ice_ethdev.c
@@ -1842,7 +1842,7 @@ ice_send_driver_ver(struct ice_hw *hw)
dv.minor_ver = 0;
dv.build_ver = 0;
dv.subbuild_ver = 0;
- strncpy((char *)dv.driver_string, "dpdk", sizeof(dv.driver_string));
+ strlcpy((char *)dv.driver_string, "dpdk", sizeof(dv.driver_string));
return ice_aq_send_driver_ver(hw, &dv, NULL);
}
@@ -1988,24 +1988,22 @@ int ice_load_pkg(struct ice_adapter *adapter, bool use_dsn, uint64_t dsn)
if (!use_dsn)
goto no_dsn;
- strncpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_UPDATES,
- ICE_MAX_PKG_FILENAME_SIZE);
- strcat(pkg_file, opt_ddp_filename);
+ strlcpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_UPDATES, ICE_MAX_PKG_FILENAME_SIZE);
+ strlcat(pkg_file, opt_ddp_filename, ICE_MAX_PKG_FILENAME_SIZE);
if (rte_firmware_read(pkg_file, &buf, &bufsz) == 0)
goto load_fw;
- strncpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_DEFAULT,
- ICE_MAX_PKG_FILENAME_SIZE);
- strcat(pkg_file, opt_ddp_filename);
+ strlcpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_DEFAULT, ICE_MAX_PKG_FILENAME_SIZE);
+ strlcat(pkg_file, opt_ddp_filename, ICE_MAX_PKG_FILENAME_SIZE);
if (rte_firmware_read(pkg_file, &buf, &bufsz) == 0)
goto load_fw;
no_dsn:
- strncpy(pkg_file, ICE_PKG_FILE_UPDATES, ICE_MAX_PKG_FILENAME_SIZE);
+ strlcpy(pkg_file, ICE_PKG_FILE_UPDATES, ICE_MAX_PKG_FILENAME_SIZE);
if (rte_firmware_read(pkg_file, &buf, &bufsz) == 0)
goto load_fw;
- strncpy(pkg_file, ICE_PKG_FILE_DEFAULT, ICE_MAX_PKG_FILENAME_SIZE);
+ strlcpy(pkg_file, ICE_PKG_FILE_DEFAULT, ICE_MAX_PKG_FILENAME_SIZE);
if (rte_firmware_read(pkg_file, &buf, &bufsz) < 0) {
PMD_INIT_LOG(ERR, "failed to search file path");
return -1;
diff --git a/drivers/net/idpf/idpf_ethdev.c b/drivers/net/idpf/idpf_ethdev.c
index 7718167096..b28e14013b 100644
--- a/drivers/net/idpf/idpf_ethdev.c
+++ b/drivers/net/idpf/idpf_ethdev.c
@@ -1201,7 +1201,7 @@ idpf_adapter_ext_init(struct rte_pci_device *pci_dev, struct idpf_adapter_ext *a
hw->device_id = pci_dev->id.device_id;
hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
- strncpy(adapter->name, pci_dev->device.name, PCI_PRI_STR_SIZE);
+ strlcpy(adapter->name, pci_dev->device.name, sizeof(adapter->name));
rte_memcpy(&base->caps, &req_caps, sizeof(struct virtchnl2_get_capabilities));
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 1dc5bb0fb4..a8abb464d6 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -3622,8 +3622,9 @@ static int ixgbe_dev_xstats_get_names_by_id(
PMD_INIT_LOG(ERR, "id value isn't valid");
return -1;
}
- strcpy(xstats_names[i].name,
- xstats_names_copy[ids[i]].name);
+ strlcpy(xstats_names[i].name,
+ xstats_names_copy[ids[i]].name,
+ sizeof(xstats_names[i].name));
}
return limit;
}
--
2.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-07-03 12:55:47.952483238 +0100
+++ 0033-net-intel-fix-use-of-non-recommended-string-function.patch 2026-07-03 12:55:46.662573773 +0100
@@ -1 +1 @@
-From 11b3f7b6e2d6e64c54e4eaee4622ec2920071430 Mon Sep 17 00:00:00 2001
+From 530797a203ec42781699fe497400486d5e628f23 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 11b3f7b6e2d6e64c54e4eaee4622ec2920071430 ]
+
@@ -20 +21,0 @@
-Cc: stable at dpdk.org
@@ -25,7 +26,7 @@
- drivers/net/intel/cpfl/cpfl_ethdev.c | 2 +-
- drivers/net/intel/cpfl/cpfl_flow_parser.c | 16 +++++++---------
- drivers/net/intel/e1000/igb_ethdev.c | 5 +++--
- drivers/net/intel/i40e/i40e_ethdev.c | 3 +--
- drivers/net/intel/ice/ice_ethdev.c | 16 +++++++---------
- drivers/net/intel/idpf/idpf_ethdev.c | 2 +-
- drivers/net/intel/ixgbe/ixgbe_ethdev.c | 5 +++--
+ drivers/net/cpfl/cpfl_ethdev.c | 2 +-
+ drivers/net/cpfl/cpfl_flow_parser.c | 16 +++++++---------
+ drivers/net/e1000/igb_ethdev.c | 5 +++--
+ drivers/net/i40e/i40e_ethdev.c | 3 +--
+ drivers/net/ice/ice_ethdev.c | 16 +++++++---------
+ drivers/net/idpf/idpf_ethdev.c | 2 +-
+ drivers/net/ixgbe/ixgbe_ethdev.c | 5 +++--
@@ -34,5 +35,5 @@
-diff --git a/drivers/net/intel/cpfl/cpfl_ethdev.c b/drivers/net/intel/cpfl/cpfl_ethdev.c
-index 7ac8797490..4315adb68c 100644
---- a/drivers/net/intel/cpfl/cpfl_ethdev.c
-+++ b/drivers/net/intel/cpfl/cpfl_ethdev.c
-@@ -2534,7 +2534,7 @@ cpfl_adapter_ext_init(struct rte_pci_device *pci_dev, struct cpfl_adapter_ext *a
+diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_ethdev.c
+index 1817221652..cb19ff93ee 100644
+--- a/drivers/net/cpfl/cpfl_ethdev.c
++++ b/drivers/net/cpfl/cpfl_ethdev.c
+@@ -2315,7 +2315,7 @@ cpfl_adapter_ext_init(struct rte_pci_device *pci_dev, struct cpfl_adapter_ext *a
@@ -45 +46 @@
- memcpy(&base->caps, &req_caps, sizeof(struct virtchnl2_get_capabilities));
+ rte_memcpy(&base->caps, &req_caps, sizeof(struct virtchnl2_get_capabilities));
@@ -47,4 +48,4 @@
-diff --git a/drivers/net/intel/cpfl/cpfl_flow_parser.c b/drivers/net/intel/cpfl/cpfl_flow_parser.c
-index dfaddc9ec5..b1d06725e9 100644
---- a/drivers/net/intel/cpfl/cpfl_flow_parser.c
-+++ b/drivers/net/intel/cpfl/cpfl_flow_parser.c
+diff --git a/drivers/net/cpfl/cpfl_flow_parser.c b/drivers/net/cpfl/cpfl_flow_parser.c
+index e7deb619ee..b2cc7289ad 100644
+--- a/drivers/net/cpfl/cpfl_flow_parser.c
++++ b/drivers/net/cpfl/cpfl_flow_parser.c
@@ -60 +61 @@
-@@ -716,8 +716,7 @@ cpfl_flow_js_mr_key(json_t *ob_mr_keys, struct cpfl_flow_js_mr_key *js_mr_key)
+@@ -647,8 +647,7 @@ cpfl_flow_js_mr_key(json_t *ob_mr_keys, struct cpfl_flow_js_mr_key *js_mr_key)
@@ -70 +71 @@
-@@ -742,8 +741,8 @@ cpfl_flow_js_mr_key(json_t *ob_mr_keys, struct cpfl_flow_js_mr_key *js_mr_key)
+@@ -673,8 +672,8 @@ cpfl_flow_js_mr_key(json_t *ob_mr_keys, struct cpfl_flow_js_mr_key *js_mr_key)
@@ -81 +82 @@
-@@ -810,7 +809,7 @@ cpfl_flow_js_mr_layout(json_t *ob_layouts, struct cpfl_flow_js_mr_action_mod *js
+@@ -741,7 +740,7 @@ cpfl_flow_js_mr_layout(json_t *ob_layouts, struct cpfl_flow_js_mr_action_mod *js
@@ -90 +91 @@
-@@ -856,7 +855,7 @@ cpfl_flow_js_mr_content(json_t *ob_content, struct cpfl_flow_js_mr_action_mod *j
+@@ -787,7 +786,7 @@ cpfl_flow_js_mr_content(json_t *ob_content, struct cpfl_flow_js_mr_action_mod *j
@@ -99 +100 @@
-@@ -1806,8 +1805,7 @@ cpfl_parse_check_prog_action(struct cpfl_flow_js_mr_key_action *key_act,
+@@ -1722,8 +1721,7 @@ cpfl_parse_check_prog_action(struct cpfl_flow_js_mr_key_action *key_act,
@@ -109,5 +110,5 @@
-diff --git a/drivers/net/intel/e1000/igb_ethdev.c b/drivers/net/intel/e1000/igb_ethdev.c
-index a4370fe32b..524c030be6 100644
---- a/drivers/net/intel/e1000/igb_ethdev.c
-+++ b/drivers/net/intel/e1000/igb_ethdev.c
-@@ -2047,8 +2047,9 @@ static int eth_igb_xstats_get_names_by_id(struct rte_eth_dev *dev,
+diff --git a/drivers/net/e1000/igb_ethdev.c b/drivers/net/e1000/igb_ethdev.c
+index 4262c5446d..91425d7923 100644
+--- a/drivers/net/e1000/igb_ethdev.c
++++ b/drivers/net/e1000/igb_ethdev.c
+@@ -1981,8 +1981,9 @@ static int eth_igb_xstats_get_names_by_id(struct rte_eth_dev *dev,
@@ -125,5 +126,5 @@
-diff --git a/drivers/net/intel/i40e/i40e_ethdev.c b/drivers/net/intel/i40e/i40e_ethdev.c
-index 1370db68f3..b2694cd33a 100644
---- a/drivers/net/intel/i40e/i40e_ethdev.c
-+++ b/drivers/net/intel/i40e/i40e_ethdev.c
-@@ -11916,8 +11916,7 @@ i40e_update_customized_ptype(struct rte_eth_dev *dev, uint8_t *pkg,
+diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
+index 9080a42edd..0bc7394552 100644
+--- a/drivers/net/i40e/i40e_ethdev.c
++++ b/drivers/net/i40e/i40e_ethdev.c
+@@ -11998,8 +11998,7 @@ i40e_update_customized_ptype(struct rte_eth_dev *dev, uint8_t *pkg,
@@ -139,5 +140,5 @@
-diff --git a/drivers/net/intel/ice/ice_ethdev.c b/drivers/net/intel/ice/ice_ethdev.c
-index ad9c49b339..99305b604b 100644
---- a/drivers/net/intel/ice/ice_ethdev.c
-+++ b/drivers/net/intel/ice/ice_ethdev.c
-@@ -1897,7 +1897,7 @@ ice_send_driver_ver(struct ice_hw *hw)
+diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c
+index a54a247389..ffdcaebc59 100644
+--- a/drivers/net/ice/ice_ethdev.c
++++ b/drivers/net/ice/ice_ethdev.c
+@@ -1842,7 +1842,7 @@ ice_send_driver_ver(struct ice_hw *hw)
@@ -152 +153 @@
-@@ -2054,24 +2054,22 @@ int ice_load_pkg(struct ice_adapter *adapter, bool use_dsn, uint64_t dsn)
+@@ -1988,24 +1988,22 @@ int ice_load_pkg(struct ice_adapter *adapter, bool use_dsn, uint64_t dsn)
@@ -161 +162 @@
- if (ice_firmware_read(pkg_file, &buf, &bufsz) == 0)
+ if (rte_firmware_read(pkg_file, &buf, &bufsz) == 0)
@@ -169 +170 @@
- if (ice_firmware_read(pkg_file, &buf, &bufsz) == 0)
+ if (rte_firmware_read(pkg_file, &buf, &bufsz) == 0)
@@ -175 +176 @@
- if (ice_firmware_read(pkg_file, &buf, &bufsz) == 0)
+ if (rte_firmware_read(pkg_file, &buf, &bufsz) == 0)
@@ -180,2 +181,2 @@
- if (ice_firmware_read(pkg_file, &buf, &bufsz) < 0) {
- PMD_INIT_LOG(ERR, "Failed to load default DDP package " ICE_PKG_FILE_DEFAULT);
+ if (rte_firmware_read(pkg_file, &buf, &bufsz) < 0) {
+ PMD_INIT_LOG(ERR, "failed to search file path");
@@ -183,5 +184,5 @@
-diff --git a/drivers/net/intel/idpf/idpf_ethdev.c b/drivers/net/intel/idpf/idpf_ethdev.c
-index fc761c6094..c13505416a 100644
---- a/drivers/net/intel/idpf/idpf_ethdev.c
-+++ b/drivers/net/intel/idpf/idpf_ethdev.c
-@@ -1497,7 +1497,7 @@ idpf_adapter_ext_init(struct rte_pci_device *pci_dev, struct idpf_adapter_ext *a
+diff --git a/drivers/net/idpf/idpf_ethdev.c b/drivers/net/idpf/idpf_ethdev.c
+index 7718167096..b28e14013b 100644
+--- a/drivers/net/idpf/idpf_ethdev.c
++++ b/drivers/net/idpf/idpf_ethdev.c
+@@ -1201,7 +1201,7 @@ idpf_adapter_ext_init(struct rte_pci_device *pci_dev, struct idpf_adapter_ext *a
@@ -194 +195 @@
- memcpy(&base->caps, &req_caps, sizeof(struct virtchnl2_get_capabilities));
+ rte_memcpy(&base->caps, &req_caps, sizeof(struct virtchnl2_get_capabilities));
@@ -196,5 +197,5 @@
-diff --git a/drivers/net/intel/ixgbe/ixgbe_ethdev.c b/drivers/net/intel/ixgbe/ixgbe_ethdev.c
-index f9de95e4fc..b36867d18d 100644
---- a/drivers/net/intel/ixgbe/ixgbe_ethdev.c
-+++ b/drivers/net/intel/ixgbe/ixgbe_ethdev.c
-@@ -3635,8 +3635,9 @@ static int ixgbe_dev_xstats_get_names_by_id(
+diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
+index 1dc5bb0fb4..a8abb464d6 100644
+--- a/drivers/net/ixgbe/ixgbe_ethdev.c
++++ b/drivers/net/ixgbe/ixgbe_ethdev.c
+@@ -3622,8 +3622,9 @@ static int ixgbe_dev_xstats_get_names_by_id(
More information about the stable
mailing list