[dpdk-test-report] |FAILURE| pw37179[dpdk-dev, v1, 12/16] ethdev: add transfer attribute to flow API

sys_stv at intel.com sys_stv at intel.com
Thu May 10 10:08:07 CEST 2018


Test-Label: Intel-compilation
Test-Status: FAILURE
http://dpdk.org/patch/37179

_apply issues_

Submitter: Adrien Mazarguil <adrien.mazarguil at 6wind.com>
Date: 2018-04-04 15:56:51
DPDK git baseline:
	Repo:dpdk-master, CommitID: 8ea41438832a360aed2b7ba49fb75e310a2ff1dc
	Repo:dpdk-next-eventdev, CommitID: 640b0d1e510e111694c25145466f37867453837f
	Repo:dpdk-next-net, CommitID: 774c1892c434dba09998ccc76b956feb72224571
	Repo:dpdk-next-crypto, CommitID: 728ca9b0d5abea82cd01dee6645456a9d56215f7
	Repo:dpdk-next-virtio, CommitID: 037c0996bc927342f157426739e0cb63f2db8689

*Repo: dpdk-master
Checking patch app/test-pmd/cmdline_flow.c...
error: while searching for:
	PRIORITY,
	INGRESS,
	EGRESS,

	/* Validate/create pattern. */
	PATTERN,

error: patch failed: app/test-pmd/cmdline_flow.c:69
error: app/test-pmd/cmdline_flow.c: patch does not apply
Checking patch app/test-pmd/config.c...
error: while searching for:
		[RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
		[RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
		[RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
		[RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
		[RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
		[RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",

error: patch failed: app/test-pmd/config.c:1223
error: app/test-pmd/config.c: patch does not apply
Checking patch doc/guides/prog_guide/rte_flow.rst...
error: while searching for:
Specifying both directions at once for a given rule is not recommended but
may be valid in a few cases (e.g. shared counters).

Pattern item
~~~~~~~~~~~~


error: patch failed: doc/guides/prog_guide/rte_flow.rst:178
error: doc/guides/prog_guide/rte_flow.rst: patch does not apply
Checking patch doc/guides/testpmd_app_ug/testpmd_funcs.rst...
error: while searching for:
- Check whether a flow rule can be created::

   flow validate {port_id}
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
--
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
       actions {action} [/ {action} [...]] / end


error: patch failed: doc/guides/testpmd_app_ug/testpmd_funcs.rst:2970
error: doc/guides/testpmd_app_ug/testpmd_funcs.rst: patch does not apply
Checking patch drivers/net/bnxt/bnxt_filter.c...
Hunk #1 succeeded at 765 (offset -12 lines).
Checking patch drivers/net/e1000/igb_flow.c...
Hunk #1 succeeded at 388 (offset 9 lines).
Hunk #2 succeeded at 650 (offset 17 lines).
Hunk #3 succeeded at 966 (offset 26 lines).
Hunk #4 succeeded at 1272 (offset 35 lines).
Hunk #5 succeeded at 1440 (offset 44 lines).
Checking patch drivers/net/enic/enic_flow.c...
error: while searching for:
					   NULL,
					   "egress is not supported");
			return -rte_errno;
		} else if (!attrs->ingress) {
			rte_flow_error_set(error, ENOTSUP,
					   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/enic/enic_flow.c:1300
error: drivers/net/enic/enic_flow.c: patch does not apply
Checking patch drivers/net/i40e/i40e_flow.c...
Hunk #1 succeeded at 1919 (offset 2 lines).
Checking patch drivers/net/ixgbe/ixgbe_flow.c...
Hunk #1 succeeded at 566 (offset 9 lines).
Hunk #2 succeeded at 813 (offset 17 lines).
Hunk #3 succeeded at 1121 (offset 26 lines).
Hunk #4 succeeded at 1311 (offset 35 lines).
Hunk #5 succeeded at 1433 (offset 44 lines).
Hunk #6 succeeded at 2926 (offset 53 lines).
Checking patch drivers/net/mlx4/mlx4_flow.c...
error: while searching for:
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
			 NULL, "egress is not supported");
	if (!attr->ingress)
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx4/mlx4_flow.c:652
error: drivers/net/mlx4/mlx4_flow.c: patch does not apply
Checking patch drivers/net/mlx5/mlx5_flow.c...
error: while searching for:
				   "egress is not supported");
		return -rte_errno;
	}
	if (!attr->ingress) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx5/mlx5_flow.c:568
error: drivers/net/mlx5/mlx5_flow.c: patch does not apply
Checking patch drivers/net/mvpp2/mrvl_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}

	return 0;
}

error: patch failed: drivers/net/mvpp2/mrvl_flow.c:2188
error: drivers/net/mvpp2/mrvl_flow.c: patch does not apply
Checking patch drivers/net/sfc/sfc_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}
	if (attr->ingress == 0) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, attr,

error: patch failed: drivers/net/sfc/sfc_flow.c:1126
error: drivers/net/sfc/sfc_flow.c: patch does not apply
Checking patch drivers/net/tap/tap_flow.c...
error: while searching for:
	};
	int action = 0; /* Only one action authorized for now */

	if (attr->group > MAX_GROUP) {
		rte_flow_error_set(
			error, EINVAL, RTE_FLOW_ERROR_TYPE_ATTR_GROUP,

error: patch failed: drivers/net/tap/tap_flow.c:1041
error: drivers/net/tap/tap_flow.c: patch does not apply
Checking patch lib/librte_ether/rte_flow.h...
error: lib/librte_ether/rte_flow.h: No such file or directory
*Repo: dpdk-next-eventdev
Checking patch app/test-pmd/cmdline_flow.c...
error: while searching for:
	PRIORITY,
	INGRESS,
	EGRESS,

	/* Validate/create pattern. */
	PATTERN,

error: patch failed: app/test-pmd/cmdline_flow.c:69
error: app/test-pmd/cmdline_flow.c: patch does not apply
Checking patch app/test-pmd/config.c...
error: while searching for:
		[RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
		[RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
		[RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
		[RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
		[RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
		[RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",

error: patch failed: app/test-pmd/config.c:1223
error: app/test-pmd/config.c: patch does not apply
Checking patch doc/guides/prog_guide/rte_flow.rst...
error: while searching for:
Specifying both directions at once for a given rule is not recommended but
may be valid in a few cases (e.g. shared counters).

Pattern item
~~~~~~~~~~~~


error: patch failed: doc/guides/prog_guide/rte_flow.rst:178
error: doc/guides/prog_guide/rte_flow.rst: patch does not apply
Checking patch doc/guides/testpmd_app_ug/testpmd_funcs.rst...
error: while searching for:
- Check whether a flow rule can be created::

   flow validate {port_id}
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
--
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
       actions {action} [/ {action} [...]] / end


error: patch failed: doc/guides/testpmd_app_ug/testpmd_funcs.rst:2970
error: doc/guides/testpmd_app_ug/testpmd_funcs.rst: patch does not apply
Checking patch drivers/net/bnxt/bnxt_filter.c...
Hunk #1 succeeded at 765 (offset -12 lines).
Checking patch drivers/net/e1000/igb_flow.c...
Hunk #1 succeeded at 388 (offset 9 lines).
Hunk #2 succeeded at 650 (offset 17 lines).
Hunk #3 succeeded at 966 (offset 26 lines).
Hunk #4 succeeded at 1272 (offset 35 lines).
Hunk #5 succeeded at 1440 (offset 44 lines).
Checking patch drivers/net/enic/enic_flow.c...
error: while searching for:
					   NULL,
					   "egress is not supported");
			return -rte_errno;
		} else if (!attrs->ingress) {
			rte_flow_error_set(error, ENOTSUP,
					   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/enic/enic_flow.c:1300
error: drivers/net/enic/enic_flow.c: patch does not apply
Checking patch drivers/net/i40e/i40e_flow.c...
Hunk #1 succeeded at 1919 (offset 2 lines).
Checking patch drivers/net/ixgbe/ixgbe_flow.c...
Hunk #1 succeeded at 566 (offset 9 lines).
Hunk #2 succeeded at 813 (offset 17 lines).
Hunk #3 succeeded at 1121 (offset 26 lines).
Hunk #4 succeeded at 1311 (offset 35 lines).
Hunk #5 succeeded at 1433 (offset 44 lines).
Hunk #6 succeeded at 2926 (offset 53 lines).
Checking patch drivers/net/mlx4/mlx4_flow.c...
error: while searching for:
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
			 NULL, "egress is not supported");
	if (!attr->ingress)
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx4/mlx4_flow.c:652
error: drivers/net/mlx4/mlx4_flow.c: patch does not apply
Checking patch drivers/net/mlx5/mlx5_flow.c...
error: while searching for:
				   "egress is not supported");
		return -rte_errno;
	}
	if (!attr->ingress) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx5/mlx5_flow.c:568
error: drivers/net/mlx5/mlx5_flow.c: patch does not apply
Checking patch drivers/net/mvpp2/mrvl_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}

	return 0;
}

error: patch failed: drivers/net/mvpp2/mrvl_flow.c:2188
error: drivers/net/mvpp2/mrvl_flow.c: patch does not apply
Checking patch drivers/net/sfc/sfc_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}
	if (attr->ingress == 0) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, attr,

error: patch failed: drivers/net/sfc/sfc_flow.c:1126
error: drivers/net/sfc/sfc_flow.c: patch does not apply
Checking patch drivers/net/tap/tap_flow.c...
error: while searching for:
	};
	int action = 0; /* Only one action authorized for now */

	if (attr->group > MAX_GROUP) {
		rte_flow_error_set(
			error, EINVAL, RTE_FLOW_ERROR_TYPE_ATTR_GROUP,

error: patch failed: drivers/net/tap/tap_flow.c:1041
error: drivers/net/tap/tap_flow.c: patch does not apply
Checking patch lib/librte_ether/rte_flow.h...
error: lib/librte_ether/rte_flow.h: No such file or directory
*Repo: dpdk-next-net
Checking patch app/test-pmd/cmdline_flow.c...
error: while searching for:
	PRIORITY,
	INGRESS,
	EGRESS,

	/* Validate/create pattern. */
	PATTERN,

error: patch failed: app/test-pmd/cmdline_flow.c:69
error: app/test-pmd/cmdline_flow.c: patch does not apply
Checking patch app/test-pmd/config.c...
error: while searching for:
		[RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
		[RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
		[RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
		[RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
		[RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
		[RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",

error: patch failed: app/test-pmd/config.c:1223
error: app/test-pmd/config.c: patch does not apply
Checking patch doc/guides/prog_guide/rte_flow.rst...
error: while searching for:
Specifying both directions at once for a given rule is not recommended but
may be valid in a few cases (e.g. shared counters).

Pattern item
~~~~~~~~~~~~


error: patch failed: doc/guides/prog_guide/rte_flow.rst:178
error: doc/guides/prog_guide/rte_flow.rst: patch does not apply
Checking patch doc/guides/testpmd_app_ug/testpmd_funcs.rst...
error: while searching for:
- Check whether a flow rule can be created::

   flow validate {port_id}
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
--
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
       actions {action} [/ {action} [...]] / end


error: patch failed: doc/guides/testpmd_app_ug/testpmd_funcs.rst:2970
error: doc/guides/testpmd_app_ug/testpmd_funcs.rst: patch does not apply
Checking patch drivers/net/bnxt/bnxt_filter.c...
Hunk #1 succeeded at 767 (offset -10 lines).
Checking patch drivers/net/e1000/igb_flow.c...
Hunk #1 succeeded at 388 (offset 9 lines).
Hunk #2 succeeded at 650 (offset 17 lines).
Hunk #3 succeeded at 966 (offset 26 lines).
Hunk #4 succeeded at 1272 (offset 35 lines).
Hunk #5 succeeded at 1440 (offset 44 lines).
Checking patch drivers/net/enic/enic_flow.c...
error: while searching for:
					   NULL,
					   "egress is not supported");
			return -rte_errno;
		} else if (!attrs->ingress) {
			rte_flow_error_set(error, ENOTSUP,
					   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/enic/enic_flow.c:1300
error: drivers/net/enic/enic_flow.c: patch does not apply
Checking patch drivers/net/i40e/i40e_flow.c...
Hunk #1 succeeded at 1919 (offset 2 lines).
Checking patch drivers/net/ixgbe/ixgbe_flow.c...
Hunk #1 succeeded at 566 (offset 9 lines).
Hunk #2 succeeded at 813 (offset 17 lines).
Hunk #3 succeeded at 1121 (offset 26 lines).
Hunk #4 succeeded at 1311 (offset 35 lines).
Hunk #5 succeeded at 1433 (offset 44 lines).
Hunk #6 succeeded at 2926 (offset 53 lines).
Checking patch drivers/net/mlx4/mlx4_flow.c...
error: while searching for:
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
			 NULL, "egress is not supported");
	if (!attr->ingress)
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx4/mlx4_flow.c:652
error: drivers/net/mlx4/mlx4_flow.c: patch does not apply
Checking patch drivers/net/mlx5/mlx5_flow.c...
error: while searching for:
				   "egress is not supported");
		return -rte_errno;
	}
	if (!attr->ingress) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx5/mlx5_flow.c:568
error: drivers/net/mlx5/mlx5_flow.c: patch does not apply
Checking patch drivers/net/mvpp2/mrvl_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}

	return 0;
}

error: patch failed: drivers/net/mvpp2/mrvl_flow.c:2188
error: drivers/net/mvpp2/mrvl_flow.c: patch does not apply
Checking patch drivers/net/sfc/sfc_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}
	if (attr->ingress == 0) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, attr,

error: patch failed: drivers/net/sfc/sfc_flow.c:1126
error: drivers/net/sfc/sfc_flow.c: patch does not apply
Checking patch drivers/net/tap/tap_flow.c...
error: while searching for:
	};
	int action = 0; /* Only one action authorized for now */

	if (attr->group > MAX_GROUP) {
		rte_flow_error_set(
			error, EINVAL, RTE_FLOW_ERROR_TYPE_ATTR_GROUP,

error: patch failed: drivers/net/tap/tap_flow.c:1041
error: drivers/net/tap/tap_flow.c: patch does not apply
Checking patch lib/librte_ether/rte_flow.h...
error: lib/librte_ether/rte_flow.h: No such file or directory
*Repo: dpdk-next-crypto
Checking patch app/test-pmd/cmdline_flow.c...
error: while searching for:
	PRIORITY,
	INGRESS,
	EGRESS,

	/* Validate/create pattern. */
	PATTERN,

error: patch failed: app/test-pmd/cmdline_flow.c:69
error: app/test-pmd/cmdline_flow.c: patch does not apply
Checking patch app/test-pmd/config.c...
error: while searching for:
		[RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
		[RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
		[RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
		[RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
		[RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
		[RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",

error: patch failed: app/test-pmd/config.c:1223
error: app/test-pmd/config.c: patch does not apply
Checking patch doc/guides/prog_guide/rte_flow.rst...
error: while searching for:
Specifying both directions at once for a given rule is not recommended but
may be valid in a few cases (e.g. shared counters).

Pattern item
~~~~~~~~~~~~


error: patch failed: doc/guides/prog_guide/rte_flow.rst:178
error: doc/guides/prog_guide/rte_flow.rst: patch does not apply
Checking patch doc/guides/testpmd_app_ug/testpmd_funcs.rst...
error: while searching for:
- Check whether a flow rule can be created::

   flow validate {port_id}
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
--
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
       actions {action} [/ {action} [...]] / end


error: patch failed: doc/guides/testpmd_app_ug/testpmd_funcs.rst:2970
error: doc/guides/testpmd_app_ug/testpmd_funcs.rst: patch does not apply
Checking patch drivers/net/bnxt/bnxt_filter.c...
Hunk #1 succeeded at 765 (offset -12 lines).
Checking patch drivers/net/e1000/igb_flow.c...
Hunk #1 succeeded at 388 (offset 9 lines).
Hunk #2 succeeded at 650 (offset 17 lines).
Hunk #3 succeeded at 966 (offset 26 lines).
Hunk #4 succeeded at 1272 (offset 35 lines).
Hunk #5 succeeded at 1440 (offset 44 lines).
Checking patch drivers/net/enic/enic_flow.c...
error: while searching for:
					   NULL,
					   "egress is not supported");
			return -rte_errno;
		} else if (!attrs->ingress) {
			rte_flow_error_set(error, ENOTSUP,
					   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/enic/enic_flow.c:1300
error: drivers/net/enic/enic_flow.c: patch does not apply
Checking patch drivers/net/i40e/i40e_flow.c...
Hunk #1 succeeded at 1919 (offset 2 lines).
Checking patch drivers/net/ixgbe/ixgbe_flow.c...
Hunk #1 succeeded at 566 (offset 9 lines).
Hunk #2 succeeded at 813 (offset 17 lines).
Hunk #3 succeeded at 1121 (offset 26 lines).
Hunk #4 succeeded at 1311 (offset 35 lines).
Hunk #5 succeeded at 1433 (offset 44 lines).
Hunk #6 succeeded at 2926 (offset 53 lines).
Checking patch drivers/net/mlx4/mlx4_flow.c...
error: while searching for:
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
			 NULL, "egress is not supported");
	if (!attr->ingress)
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx4/mlx4_flow.c:652
error: drivers/net/mlx4/mlx4_flow.c: patch does not apply
Checking patch drivers/net/mlx5/mlx5_flow.c...
error: while searching for:
				   "egress is not supported");
		return -rte_errno;
	}
	if (!attr->ingress) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx5/mlx5_flow.c:568
error: drivers/net/mlx5/mlx5_flow.c: patch does not apply
Checking patch drivers/net/mvpp2/mrvl_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}

	return 0;
}

error: patch failed: drivers/net/mvpp2/mrvl_flow.c:2188
error: drivers/net/mvpp2/mrvl_flow.c: patch does not apply
Checking patch drivers/net/sfc/sfc_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}
	if (attr->ingress == 0) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, attr,

error: patch failed: drivers/net/sfc/sfc_flow.c:1126
error: drivers/net/sfc/sfc_flow.c: patch does not apply
Checking patch drivers/net/tap/tap_flow.c...
error: while searching for:
	};
	int action = 0; /* Only one action authorized for now */

	if (attr->group > MAX_GROUP) {
		rte_flow_error_set(
			error, EINVAL, RTE_FLOW_ERROR_TYPE_ATTR_GROUP,

error: patch failed: drivers/net/tap/tap_flow.c:1041
error: drivers/net/tap/tap_flow.c: patch does not apply
Checking patch lib/librte_ether/rte_flow.h...
error: lib/librte_ether/rte_flow.h: No such file or directory
*Repo: dpdk-next-virtio
Checking patch app/test-pmd/cmdline_flow.c...
error: while searching for:
	PRIORITY,
	INGRESS,
	EGRESS,

	/* Validate/create pattern. */
	PATTERN,

error: patch failed: app/test-pmd/cmdline_flow.c:69
error: app/test-pmd/cmdline_flow.c: patch does not apply
Checking patch app/test-pmd/config.c...
error: while searching for:
		[RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
		[RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
		[RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
		[RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
		[RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
		[RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",

error: patch failed: app/test-pmd/config.c:1223
error: app/test-pmd/config.c: patch does not apply
Checking patch doc/guides/prog_guide/rte_flow.rst...
error: while searching for:
Specifying both directions at once for a given rule is not recommended but
may be valid in a few cases (e.g. shared counters).

Pattern item
~~~~~~~~~~~~


error: patch failed: doc/guides/prog_guide/rte_flow.rst:178
error: doc/guides/prog_guide/rte_flow.rst: patch does not apply
Checking patch doc/guides/testpmd_app_ug/testpmd_funcs.rst...
error: while searching for:
- Check whether a flow rule can be created::

   flow validate {port_id}
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
--
       [group {group_id}] [priority {level}] [ingress] [egress]
       pattern {item} [/ {item} [...]] / end
       actions {action} [/ {action} [...]] / end


error: patch failed: doc/guides/testpmd_app_ug/testpmd_funcs.rst:2970
error: doc/guides/testpmd_app_ug/testpmd_funcs.rst: patch does not apply
Checking patch drivers/net/bnxt/bnxt_filter.c...
Hunk #1 succeeded at 765 (offset -12 lines).
Checking patch drivers/net/e1000/igb_flow.c...
Hunk #1 succeeded at 388 (offset 9 lines).
Hunk #2 succeeded at 650 (offset 17 lines).
Hunk #3 succeeded at 966 (offset 26 lines).
Hunk #4 succeeded at 1272 (offset 35 lines).
Hunk #5 succeeded at 1440 (offset 44 lines).
Checking patch drivers/net/enic/enic_flow.c...
error: while searching for:
					   NULL,
					   "egress is not supported");
			return -rte_errno;
		} else if (!attrs->ingress) {
			rte_flow_error_set(error, ENOTSUP,
					   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/enic/enic_flow.c:1300
error: drivers/net/enic/enic_flow.c: patch does not apply
Checking patch drivers/net/i40e/i40e_flow.c...
Hunk #1 succeeded at 1919 (offset 2 lines).
Checking patch drivers/net/ixgbe/ixgbe_flow.c...
Hunk #1 succeeded at 566 (offset 9 lines).
Hunk #2 succeeded at 813 (offset 17 lines).
Hunk #3 succeeded at 1121 (offset 26 lines).
Hunk #4 succeeded at 1311 (offset 35 lines).
Hunk #5 succeeded at 1433 (offset 44 lines).
Hunk #6 succeeded at 2926 (offset 53 lines).
Checking patch drivers/net/mlx4/mlx4_flow.c...
error: while searching for:
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
			 NULL, "egress is not supported");
	if (!attr->ingress)
		return rte_flow_error_set
			(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx4/mlx4_flow.c:652
error: drivers/net/mlx4/mlx4_flow.c: patch does not apply
Checking patch drivers/net/mlx5/mlx5_flow.c...
error: while searching for:
				   "egress is not supported");
		return -rte_errno;
	}
	if (!attr->ingress) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,

error: patch failed: drivers/net/mlx5/mlx5_flow.c:568
error: drivers/net/mlx5/mlx5_flow.c: patch does not apply
Checking patch drivers/net/mvpp2/mrvl_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}

	return 0;
}

error: patch failed: drivers/net/mvpp2/mrvl_flow.c:2188
error: drivers/net/mvpp2/mrvl_flow.c: patch does not apply
Checking patch drivers/net/sfc/sfc_flow.c...
error: while searching for:
				   "Egress is not supported");
		return -rte_errno;
	}
	if (attr->ingress == 0) {
		rte_flow_error_set(error, ENOTSUP,
				   RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, attr,

error: patch failed: drivers/net/sfc/sfc_flow.c:1126
error: drivers/net/sfc/sfc_flow.c: patch does not apply
Checking patch drivers/net/tap/tap_flow.c...
error: while searching for:
	};
	int action = 0; /* Only one action authorized for now */

	if (attr->group > MAX_GROUP) {
		rte_flow_error_set(
			error, EINVAL, RTE_FLOW_ERROR_TYPE_ATTR_GROUP,

error: patch failed: drivers/net/tap/tap_flow.c:1041
error: drivers/net/tap/tap_flow.c: patch does not apply
Checking patch lib/librte_ether/rte_flow.h...
error: lib/librte_ether/rte_flow.h: No such file or directory

DPDK STV team


More information about the test-report mailing list