Test-Label: iol-testing Test-Status: WARNING http://dpdk.org/patch/121663 _apply patch failure_ Submitter: Xing, Beilei Date: Friday, January 06 2023 09:16:27 Applied on: CommitID:373f4c7de8ff350548cacc3d56e788461677f2c7 Apply patch set 121663-121675 failed: Checking patch drivers/common/idpf/idpf_common_device.h... Checking patch drivers/net/idpf/idpf_ethdev.c... error: while searching for: struct idpf_vport *vport = dev->data->dev_private; struct idpf_adapter *adapter = vport->adapter; dev_info->max_rx_queues = adapter->caps->max_rx_q; dev_info->max_tx_queues = adapter->caps->max_tx_q; dev_info->min_rx_bufsize = IDPF_MIN_BUF_SIZE; dev_info->max_rx_pktlen = vport->max_mtu + IDPF_ETH_OVERHEAD; error: patch failed: drivers/net/idpf/idpf_ethdev.c:53 error: while searching for: struct virtchnl2_create_vport *vport_info) { struct idpf_vport *vport = dev->data->dev_private; struct idpf_adapter *adapter = vport->adapter; vport_info->vport_type = rte_cpu_to_le_16(VIRTCHNL2_VPORT_TYPE_DEFAULT); if (adapter->txq_model == 0) { error: patch failed: drivers/net/idpf/idpf_ethdev.c:147 Hunk #3 succeeded at 422 (offset 43 lines). Hunk #4 succeeded at 459 (offset 39 lines). Hunk #5 succeeded at 557 (offset 39 lines). Hunk #6 succeeded at 643 (offset 47 lines). error: while searching for: } static int idpf_parse_devargs(struct rte_pci_device *pci_dev, struct idpf_adapter *adapter, struct idpf_devargs *idpf_args) { struct rte_devargs *devargs = pci_dev->device.devargs; error: patch failed: drivers/net/idpf/idpf_ethdev.c:728 Hunk #8 succeeded at 918 (offset 43 lines). Hunk #9 succeeded at 945 (offset 43 lines). error: while searching for: goto err_api; } adapter->caps = rte_zmalloc("idpf_caps", sizeof(struct virtchnl2_get_capabilities), 0); if (adapter->caps == NULL) { PMD_INIT_LOG(ERR, "Failed to allocate idpf_caps memory"); ret = -ENOMEM; goto err_api; } ret = idpf_vc_get_caps(adapter); if (ret != 0) { PMD_INIT_LOG(ERR, "Failed to get capabilities"); goto err_caps; } adapter->max_vport_nb = adapter->caps->max_vports; adapter->vports = rte_zmalloc("vports", adapter->max_vport_nb * error: patch failed: drivers/net/idpf/idpf_ethdev.c:922 Hunk #11 succeeded at 1008 (offset 71 lines). error: while searching for: return ret; err_vports: err_caps: rte_free(adapter->caps); adapter->caps = NULL; err_api: rte_free(adapter->mbx_resp); adapter->mbx_resp = NULL; err_mbx: idpf_ctlq_deinit(hw); err: error: patch failed: drivers/net/idpf/idpf_ethdev.c:962 error: while searching for: }; static uint16_t idpf_vport_idx_alloc(struct idpf_adapter *ad) { uint16_t vport_idx; uint16_t i; error: patch failed: drivers/net/idpf/idpf_ethdev.c:995 error: while searching for: { struct idpf_vport *vport = dev->data->dev_private; struct idpf_vport_param *param = init_params; struct idpf_adapter *adapter = param->adapter; /* for sending create vport virtchnl msg prepare */ struct virtchnl2_create_vport vport_req_info; int ret = 0; dev->dev_ops = &idpf_eth_dev_ops; vport->adapter = adapter; vport->sw_idx = param->idx; vport->devarg_id = param->devarg_id; error: patch failed: drivers/net/idpf/idpf_ethdev.c:1018 Hunk #15 succeeded at 1137 (offset 64 lines). error: while searching for: } static void idpf_adapter_rel(struct idpf_adapter *adapter) { struct idpf_hw *hw = &adapter->hw; idpf_ctlq_deinit(hw); rte_free(adapter->caps); adapter->caps = NULL; rte_free(adapter->mbx_resp); adapter->mbx_resp = NULL; rte_free(adapter->vports); adapter->vports = NULL; error: patch failed: drivers/net/idpf/idpf_ethdev.c:1110 error: while searching for: struct rte_pci_device *pci_dev) { struct idpf_vport_param vport_param; struct idpf_adapter *adapter; struct idpf_devargs devargs; char name[RTE_ETH_NAME_MAX_LEN]; int i, retval; error: patch failed: drivers/net/idpf/idpf_ethdev.c:1131 Hunk #18 succeeded at 1212 (offset 84 lines). Hunk #19 succeeded at 1282 (offset 72 lines). Checking patch drivers/net/idpf/idpf_ethdev.h... error: while searching for: }; struct idpf_vport_param { struct idpf_adapter *adapter; uint16_t devarg_id; /* arg id from user */ uint16_t idx; /* index in adapter->vports[]*/ }; error: patch failed: drivers/net/idpf/idpf_ethdev.h:91 error: while searching for: uint16_t req_vport_nb; }; struct idpf_adapter { TAILQ_ENTRY(idpf_adapter) next; struct idpf_hw hw; char name[IDPF_ADAPTER_NAME_LEN]; struct virtchnl2_version_info virtchnl_version; struct virtchnl2_get_capabilities *caps; volatile uint32_t pend_cmd; /* pending command not finished */ uint32_t cmd_retval; /* return value of the cmd response from ipf */ uint8_t *mbx_resp; /* buffer to store the mailbox response from ipf */ uint32_t txq_model; /* 0 - split queue model, non-0 - single queue model */ uint32_t rxq_model; /* 0 - split queue model, non-0 - single queue model */ error: patch failed: drivers/net/idpf/idpf_ethdev.h:144 Hunk #4 succeeded at 175 (offset -2 lines). error: while searching for: return !ret; } struct idpf_adapter *idpf_find_adapter(struct rte_pci_device *pci_dev); void idpf_handle_virtchnl_msg(struct rte_eth_dev *dev); int idpf_vc_check_api_version(struct idpf_adapter *adapter); int idpf_get_pkt_type(struct idpf_adapter *adapter); int idpf_vc_get_caps(struct idpf_adapter *adapter); int idpf_vc_create_vport(struct idpf_vport *vport, struct virtchnl2_create_vport *vport_info); error: patch failed: drivers/net/idpf/idpf_ethdev.h:234 Checking patch drivers/net/idpf/idpf_rxtx.c... Hunk #4 succeeded at 1782 (offset -9 lines). Hunk #5 succeeded at 1796 (offset -9 lines). Hunk #6 succeeded at 2212 (offset -9 lines). Hunk #7 succeeded at 2266 (offset -9 lines). Checking patch drivers/net/idpf/idpf_rxtx.h... Checking patch drivers/net/idpf/idpf_rxtx_vec_avx512.c... Checking patch drivers/net/idpf/idpf_vchnl.c... Hunk #5 succeeded at 754 (offset 10 lines). Hunk #6 succeeded at 847 (offset 10 lines). Hunk #7 succeeded at 955 (offset 10 lines). Hunk #8 succeeded at 1026 (offset 10 lines). Applied patch drivers/common/idpf/idpf_common_device.h cleanly. Applying patch drivers/net/idpf/idpf_ethdev.c with 9 rejects... Rejected hunk #1. Rejected hunk #2. Hunk #3 applied cleanly. Hunk #4 applied cleanly. Hunk #5 applied cleanly. Hunk #6 applied cleanly. Rejected hunk #7. Hunk #8 applied cleanly. Hunk #9 applied cleanly. Rejected hunk #10. Hunk #11 applied cleanly. Rejected hunk #12. Rejected hunk #13. Rejected hunk #14. Hunk #15 applied cleanly. Rejected hunk #16. Rejected hunk #17. Hunk #18 applied cleanly. Hunk #19 applied cleanly. Applying patch drivers/net/idpf/idpf_ethdev.h with 3 rejects... Hunk #1 applied cleanly. Rejected hunk #2. Rejected hunk #3. Hunk #4 applied cleanly. Rejected hunk #5. Applied patch drivers/net/idpf/idpf_rxtx.c cleanly. Applied patch drivers/net/idpf/idpf_rxtx.h cleanly. Applied patch drivers/net/idpf/idpf_rxtx_vec_avx512.c cleanly. Applied patch drivers/net/idpf/idpf_vchnl.c cleanly. diff a/drivers/net/idpf/idpf_ethdev.c b/drivers/net/idpf/idpf_ethdev.c (rejected hunks) @@ -53,8 +53,8 @@ idpf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info) struct idpf_vport *vport = dev->data->dev_private; struct idpf_adapter *adapter = vport->adapter; - dev_info->max_rx_queues = adapter->caps->max_rx_q; - dev_info->max_tx_queues = adapter->caps->max_tx_q; + dev_info->max_rx_queues = adapter->caps.max_rx_q; + dev_info->max_tx_queues = adapter->caps.max_tx_q; dev_info->min_rx_bufsize = IDPF_MIN_BUF_SIZE; dev_info->max_rx_pktlen = vport->max_mtu + IDPF_ETH_OVERHEAD; @@ -147,7 +147,7 @@ idpf_init_vport_req_info(struct rte_eth_dev *dev, struct virtchnl2_create_vport *vport_info) { struct idpf_vport *vport = dev->data->dev_private; - struct idpf_adapter *adapter = vport->adapter; + struct idpf_adapter_ext *adapter = IDPF_ADAPTER_TO_EXT(vport->adapter); vport_info->vport_type = rte_cpu_to_le_16(VIRTCHNL2_VPORT_TYPE_DEFAULT); if (adapter->txq_model == 0) { @@ -728,7 +728,7 @@ parse_bool(const char *key, const char *value, void *args) } static int -idpf_parse_devargs(struct rte_pci_device *pci_dev, struct idpf_adapter *adapter, +idpf_parse_devargs(struct rte_pci_device *pci_dev, struct idpf_adapter_ext *adapter, struct idpf_devargs *idpf_args) { struct rte_devargs *devargs = pci_dev->device.devargs; @@ -922,21 +922,13 @@ idpf_adapter_init(struct rte_pci_device *pci_dev, struct idpf_adapter *adapter) goto err_api; } - adapter->caps = rte_zmalloc("idpf_caps", - sizeof(struct virtchnl2_get_capabilities), 0); - if (adapter->caps == NULL) { - PMD_INIT_LOG(ERR, "Failed to allocate idpf_caps memory"); - ret = -ENOMEM; - goto err_api; - } - - ret = idpf_vc_get_caps(adapter); + ret = idpf_vc_get_caps(&adapter->base); if (ret != 0) { PMD_INIT_LOG(ERR, "Failed to get capabilities"); - goto err_caps; + goto err_api; } - adapter->max_vport_nb = adapter->caps->max_vports; + adapter->max_vport_nb = adapter->base.caps.max_vports; adapter->vports = rte_zmalloc("vports", adapter->max_vport_nb * @@ -962,13 +954,9 @@ idpf_adapter_init(struct rte_pci_device *pci_dev, struct idpf_adapter *adapter) return ret; -err_vports: -err_caps: - rte_free(adapter->caps); - adapter->caps = NULL; err_api: - rte_free(adapter->mbx_resp); - adapter->mbx_resp = NULL; + rte_free(adapter->base.mbx_resp); + adapter->base.mbx_resp = NULL; err_mbx: idpf_ctlq_deinit(hw); err: @@ -995,7 +983,7 @@ static const struct eth_dev_ops idpf_eth_dev_ops = { }; static uint16_t -idpf_vport_idx_alloc(struct idpf_adapter *ad) +idpf_vport_idx_alloc(struct idpf_adapter_ext *ad) { uint16_t vport_idx; uint16_t i; @@ -1018,13 +1006,13 @@ idpf_dev_vport_init(struct rte_eth_dev *dev, void *init_params) { struct idpf_vport *vport = dev->data->dev_private; struct idpf_vport_param *param = init_params; - struct idpf_adapter *adapter = param->adapter; + struct idpf_adapter_ext *adapter = param->adapter; /* for sending create vport virtchnl msg prepare */ struct virtchnl2_create_vport vport_req_info; int ret = 0; dev->dev_ops = &idpf_eth_dev_ops; - vport->adapter = adapter; + vport->adapter = &adapter->base; vport->sw_idx = param->idx; vport->devarg_id = param->devarg_id; @@ -1110,17 +1098,14 @@ idpf_find_adapter(struct rte_pci_device *pci_dev) } static void -idpf_adapter_rel(struct idpf_adapter *adapter) +idpf_adapter_rel(struct idpf_adapter_ext *adapter) { - struct idpf_hw *hw = &adapter->hw; + struct idpf_hw *hw = &adapter->base.hw; idpf_ctlq_deinit(hw); - rte_free(adapter->caps); - adapter->caps = NULL; - - rte_free(adapter->mbx_resp); - adapter->mbx_resp = NULL; + rte_free(adapter->base.mbx_resp); + adapter->base.mbx_resp = NULL; rte_free(adapter->vports); adapter->vports = NULL; @@ -1131,7 +1116,7 @@ idpf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, struct rte_pci_device *pci_dev) { struct idpf_vport_param vport_param; - struct idpf_adapter *adapter; + struct idpf_adapter_ext *adapter; struct idpf_devargs devargs; char name[RTE_ETH_NAME_MAX_LEN]; int i, retval; diff a/drivers/net/idpf/idpf_ethdev.h b/drivers/net/idpf/idpf_ethdev.h (rejected hunks) @@ -91,7 +92,7 @@ struct idpf_chunks_info { }; struct idpf_vport_param { - struct idpf_adapter *adapter; + struct idpf_adapter_ext *adapter; uint16_t devarg_id; /* arg id from user */ uint16_t idx; /* index in adapter->vports[]*/ }; @@ -144,17 +145,11 @@ struct idpf_devargs { uint16_t req_vport_nb; }; -struct idpf_adapter { - TAILQ_ENTRY(idpf_adapter) next; - struct idpf_hw hw; - char name[IDPF_ADAPTER_NAME_LEN]; - - struct virtchnl2_version_info virtchnl_version; - struct virtchnl2_get_capabilities *caps; +struct idpf_adapter_ext { + TAILQ_ENTRY(idpf_adapter_ext) next; + struct idpf_adapter base; - volatile uint32_t pend_cmd; /* pending command not finished */ - uint32_t cmd_retval; /* return value of the cmd response from ipf */ - uint8_t *mbx_resp; /* buffer to store the mailbox response from ipf */ + char name[IDPF_ADAPTER_NAME_LEN]; uint32_t txq_model; /* 0 - split queue model, non-0 - single queue model */ uint32_t rxq_model; /* 0 - split queue model, non-0 - single queue model */ @@ -234,10 +231,10 @@ atomic_set_cmd(struct idpf_adapter *adapter, uint32_t ops) return !ret; } -struct idpf_adapter *idpf_find_adapter(struct rte_pci_device *pci_dev); +struct idpf_adapter_ext *idpf_find_adapter_ext(struct rte_pci_device *pci_dev); void idpf_handle_virtchnl_msg(struct rte_eth_dev *dev); int idpf_vc_check_api_version(struct idpf_adapter *adapter); -int idpf_get_pkt_type(struct idpf_adapter *adapter); +int idpf_get_pkt_type(struct idpf_adapter_ext *adapter); int idpf_vc_get_caps(struct idpf_adapter *adapter); int idpf_vc_create_vport(struct idpf_vport *vport, struct virtchnl2_create_vport *vport_info); Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx.c... error: drivers/net/idpf/idpf_rxtx.c: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/net/idpf/idpf_vchnl.c... error: drivers/net/idpf/idpf_vchnl.c: does not match index Checking patch drivers/common/idpf/base/meson.build... Checking patch drivers/common/idpf/idpf_common_device.c... Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_logs.h... Checking patch drivers/common/idpf/idpf_common_virtchnl.c... Checking patch drivers/common/idpf/idpf_common_virtchnl.h... Checking patch drivers/common/idpf/meson.build... Checking patch drivers/common/idpf/version.map... Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/net/idpf/idpf_vchnl.c... error: drivers/net/idpf/idpf_vchnl.c: does not match index Applied patch drivers/common/idpf/base/meson.build cleanly. Applied patch drivers/common/idpf/idpf_common_device.c cleanly. Applied patch drivers/common/idpf/idpf_common_logs.h cleanly. Applied patch drivers/common/idpf/idpf_common_virtchnl.c cleanly. Applied patch drivers/common/idpf/idpf_common_virtchnl.h cleanly. Applied patch drivers/common/idpf/meson.build cleanly. Applied patch drivers/common/idpf/version.map cleanly. Checking patch drivers/common/idpf/idpf_common_device.c... error: drivers/common/idpf/idpf_common_device.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.h... error: drivers/common/idpf/idpf_common_virtchnl.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/common/idpf/idpf_common_device.c... error: drivers/common/idpf/idpf_common_device.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.c... error: drivers/common/idpf/idpf_common_virtchnl.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.h... error: drivers/common/idpf/idpf_common_virtchnl.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/common/idpf/idpf_common_device.c... error: drivers/common/idpf/idpf_common_device.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.h... error: drivers/common/idpf/idpf_common_virtchnl.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/common/idpf/idpf_common_device.c... error: drivers/common/idpf/idpf_common_device.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.c... error: drivers/common/idpf/idpf_common_virtchnl.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.h... error: drivers/common/idpf/idpf_common_virtchnl.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/common/idpf/idpf_common_device.c... error: drivers/common/idpf/idpf_common_device.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.h... error: drivers/common/idpf/idpf_common_virtchnl.h: does not exist in index Checking patch drivers/common/idpf/meson.build... error: drivers/common/idpf/meson.build: does not match index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx.c... error: drivers/net/idpf/idpf_rxtx.c: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx_vec_avx512.c... error: drivers/net/idpf/idpf_rxtx_vec_avx512.c: does not match index Checking patch drivers/net/idpf/idpf_vchnl.c... error: drivers/net/idpf/idpf_vchnl.c: does not match index Checking patch drivers/common/idpf/idpf_common_device.c... error: drivers/common/idpf/idpf_common_device.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx.c... error: drivers/net/idpf/idpf_rxtx.c: does not match index Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_rxtx.h... Checking patch drivers/common/idpf/idpf_common_virtchnl.c... error: drivers/common/idpf/idpf_common_virtchnl.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_virtchnl.h... error: drivers/common/idpf/idpf_common_virtchnl.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/net/idpf/idpf_vchnl.c... error: drivers/net/idpf/idpf_vchnl.c: does not match index Checking patch drivers/net/idpf/meson.build... Applied patch drivers/common/idpf/idpf_common_rxtx.h cleanly. Applied patch drivers/net/idpf/meson.build cleanly. Checking patch drivers/common/idpf/idpf_common_rxtx.c... Checking patch drivers/common/idpf/idpf_common_rxtx.h... error: drivers/common/idpf/idpf_common_rxtx.h: does not exist in index Checking patch drivers/common/idpf/meson.build... error: drivers/common/idpf/meson.build: does not match index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_rxtx.c... error: drivers/net/idpf/idpf_rxtx.c: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx_vec_avx512.c... error: drivers/net/idpf/idpf_rxtx_vec_avx512.c: does not match index Applied patch drivers/common/idpf/idpf_common_rxtx.c cleanly. Checking patch drivers/common/idpf/idpf_common_device.h... error: drivers/common/idpf/idpf_common_device.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_logs.h... error: drivers/common/idpf/idpf_common_logs.h: does not exist in index Checking patch drivers/common/idpf/idpf_common_rxtx.c... error: drivers/common/idpf/idpf_common_rxtx.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_rxtx.h... error: drivers/common/idpf/idpf_common_rxtx.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_ethdev.c... error: drivers/net/idpf/idpf_ethdev.c: does not match index Checking patch drivers/net/idpf/idpf_ethdev.h... error: drivers/net/idpf/idpf_ethdev.h: does not match index Checking patch drivers/net/idpf/idpf_logs.h... Checking patch drivers/net/idpf/idpf_rxtx.c... error: drivers/net/idpf/idpf_rxtx.c: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/net/idpf/idpf_rxtx_vec_avx512.c... error: drivers/net/idpf/idpf_rxtx_vec_avx512.c: does not match index Applied patch drivers/net/idpf/idpf_logs.h cleanly. Checking patch drivers/common/idpf/idpf_common_rxtx.c... error: drivers/common/idpf/idpf_common_rxtx.c: does not exist in index Checking patch drivers/common/idpf/idpf_common_rxtx.h... error: drivers/common/idpf/idpf_common_rxtx.h: does not exist in index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_rxtx.c... error: drivers/net/idpf/idpf_rxtx.c: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/common/idpf/idpf_common_rxtx.h... error: drivers/common/idpf/idpf_common_rxtx.h: does not exist in index Checking patch drivers/net/idpf/idpf_rxtx_vec_avx512.c => drivers/common/idpf/idpf_common_rxtx_avx512.c... error: drivers/net/idpf/idpf_rxtx_vec_avx512.c: does not match index Checking patch drivers/common/idpf/meson.build... error: drivers/common/idpf/meson.build: does not match index Checking patch drivers/common/idpf/version.map... error: drivers/common/idpf/version.map: does not match index Checking patch drivers/net/idpf/idpf_rxtx.h... error: drivers/net/idpf/idpf_rxtx.h: does not match index Checking patch drivers/net/idpf/meson.build... error: drivers/net/idpf/meson.build: does not match index https://lab.dpdk.org/results/dashboard/patchsets/24896/ UNH-IOL DPDK Community Lab