ethdev: fix RTE_FLOW_PORT_FLAG_SHARE_INDIRECT definition
Checks
Commit Message
Fix value of RTE_FLOW_PORT_FLAG_SHARE_INDIRECT.
Fixes: f5b2846d89d7 ("ethdev: share indirect action between ports")
Cc: stable@dpdk.org
Signed-off-by: Gregory Etelson <getelson@nvidia.com>
---
lib/ethdev/rte_flow.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
Comments
> -----Original Message-----
> From: Gregory Etelson <getelson@nvidia.com>
> Sent: Sunday, October 29, 2023 7:54 PM
> To: dev@dpdk.org
>
> Fix value of RTE_FLOW_PORT_FLAG_SHARE_INDIRECT.
>
> Fixes: f5b2846d89d7 ("ethdev: share indirect action between ports")
> Cc: stable@dpdk.org
> Signed-off-by: Gregory Etelson <getelson@nvidia.com>
> ---
> lib/ethdev/rte_flow.h | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/lib/ethdev/rte_flow.h b/lib/ethdev/rte_flow.h
> index edefa34c10..c16fe8c21f 100644
> --- a/lib/ethdev/rte_flow.h
> +++ b/lib/ethdev/rte_flow.h
> @@ -5365,6 +5365,13 @@ rte_flow_flex_item_release(uint16_t port_id,
> */
> #define RTE_FLOW_PORT_FLAG_STRICT_QUEUE RTE_BIT32(0)
>
> +/**
> + * Indicate all steering objects should be created on contexts
> + * of the host port, providing indirect object sharing between
> + * ports.
> + */
> +#define RTE_FLOW_PORT_FLAG_SHARE_INDIRECT RTE_BIT32(1)
> +
> /**
> * @warning
> * @b EXPERIMENTAL: this API may change without prior notice.
> @@ -5450,13 +5457,6 @@ rte_flow_info_get(uint16_t port_id,
> struct rte_flow_queue_info *queue_info,
> struct rte_flow_error *error);
>
> -/**
> - * Indicate all steering objects should be created on contexts
> - * of the host port, providing indirect object sharing between
> - * ports.
> - */
> -#define RTE_FLOW_PORT_FLAG_SHARE_INDIRECT RTE_BIT32(0)
> -
> /**
> * @warning
> * @b EXPERIMENTAL: this API may change without prior notice.
> --
> 2.39.2
Acked-by: Ori Kam <orika@nvidia.com>
Best,
Ori
On 10/30/2023 6:22 AM, Ori Kam wrote:
>
>
>> -----Original Message-----
>> From: Gregory Etelson <getelson@nvidia.com>
>> Sent: Sunday, October 29, 2023 7:54 PM
>> To: dev@dpdk.org
>>
>> Fix value of RTE_FLOW_PORT_FLAG_SHARE_INDIRECT.
>>
>> Fixes: f5b2846d89d7 ("ethdev: share indirect action between ports")
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: Gregory Etelson <getelson@nvidia.com>>
> Acked-by: Ori Kam <orika@nvidia.com>
>
Applied to dpdk-next-net/main, thanks.
@@ -5365,6 +5365,13 @@ rte_flow_flex_item_release(uint16_t port_id,
*/
#define RTE_FLOW_PORT_FLAG_STRICT_QUEUE RTE_BIT32(0)
+/**
+ * Indicate all steering objects should be created on contexts
+ * of the host port, providing indirect object sharing between
+ * ports.
+ */
+#define RTE_FLOW_PORT_FLAG_SHARE_INDIRECT RTE_BIT32(1)
+
/**
* @warning
* @b EXPERIMENTAL: this API may change without prior notice.
@@ -5450,13 +5457,6 @@ rte_flow_info_get(uint16_t port_id,
struct rte_flow_queue_info *queue_info,
struct rte_flow_error *error);
-/**
- * Indicate all steering objects should be created on contexts
- * of the host port, providing indirect object sharing between
- * ports.
- */
-#define RTE_FLOW_PORT_FLAG_SHARE_INDIRECT RTE_BIT32(0)
-
/**
* @warning
* @b EXPERIMENTAL: this API may change without prior notice.