[dpdk-dev] [PATCH ] common/cnxk: fix setting default flow action

Jerin Jacob jerinjacobk at gmail.com
Mon Jul 31 14:47:07 CEST 2023


On Mon, Jul 31, 2023 at 8:26 AM <psatheesh at marvell.com> wrote:
>
> From: Satheesh Paul <psatheesh at marvell.com>
>
> For MCAM rules with PF/VF action, the PF's default rule action is
> is copied and overwritten over the user provided action. Fixing this
> by setting default action only if no other action (like queue) is
> specified by user.
>
> Fixes: a07f7ced436def ("common/cnxk: add NPC init and fini")
> Cc: stable at dpdk.org
>
> Signed-off-by: Satheesh Paul <psatheesh at marvell.com>
> Reviewed-by: Kiran Kumar K <kirankumark at marvell.com>

Updated the git commit as follows and applied to
dpdk-next-net-mrvl/for-next-net. Thanks


    common/cnxk: fix default flow action setting

    For MCAM rules with PF/VF action, the PF's default rule action is
    is copied and overwritten over the user provided action. Fixing this
    by setting default action only if no other action (like queue) is
    specified by user.

    Fixes: a07f7ced436d ("common/cnxk: add NPC init and fini")
    Cc: stable at dpdk.org

    Signed-off-by: Satheesh Paul <psatheesh at marvell.com>
    Reviewed-by: Kiran Kumar K <kirankumark at marvell.com>


> ---
>  drivers/common/cnxk/hw/nix.h            |  1 +
>  drivers/common/cnxk/roc_npc.c           | 17 ++++++++++-------
>  drivers/common/cnxk/roc_npc_mcam_dump.c |  4 ++++
>  3 files changed, 15 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/common/cnxk/hw/nix.h b/drivers/common/cnxk/hw/nix.h
> index 26dcda680e..d2c80f3c74 100644
> --- a/drivers/common/cnxk/hw/nix.h
> +++ b/drivers/common/cnxk/hw/nix.h
> @@ -619,6 +619,7 @@
>  #define NIX_RX_ACTIONOP_RSS         (0x4ull)
>  #define NIX_RX_ACTIONOP_PF_FUNC_DROP (0x5ull)
>  #define NIX_RX_ACTIONOP_MIRROR      (0x6ull)
> +#define NIX_RX_ACTIONOP_DEFAULT             (0xfull)
>
>  #define NIX_RX_VTAGACTION_VTAG0_RELPTR (0x0ull)
>  #define NIX_RX_VTAGACTION_VTAG1_RELPTR (0x4ull)
> diff --git a/drivers/common/cnxk/roc_npc.c b/drivers/common/cnxk/roc_npc.c
> index 848086c8de..586bc55791 100644
> --- a/drivers/common/cnxk/roc_npc.c
> +++ b/drivers/common/cnxk/roc_npc.c
> @@ -726,11 +726,15 @@ npc_parse_actions(struct roc_npc *roc_npc, const struct roc_npc_attr *attr,
>         if (req_act == ROC_NPC_ACTION_TYPE_VLAN_STRIP) {
>                 /* Only VLAN action is provided */
>                 flow->npc_action = NIX_RX_ACTIONOP_UCAST;
> -       } else if (req_act &
> -                  (ROC_NPC_ACTION_TYPE_PF | ROC_NPC_ACTION_TYPE_VF)) {
> -               flow->npc_action = NIX_RX_ACTIONOP_UCAST;
> -               if (req_act & ROC_NPC_ACTION_TYPE_QUEUE)
> -                       flow->npc_action |= (uint64_t)rq << 20;
> +       } else if (req_act & (ROC_NPC_ACTION_TYPE_PF | ROC_NPC_ACTION_TYPE_VF)) {
> +               /* Check if any other action is set */
> +               if ((req_act == ROC_NPC_ACTION_TYPE_PF) || (req_act == ROC_NPC_ACTION_TYPE_VF)) {
> +                       flow->npc_action = NIX_RX_ACTIONOP_DEFAULT;
> +               } else {
> +                       flow->npc_action = NIX_RX_ACTIONOP_UCAST;
> +                       if (req_act & ROC_NPC_ACTION_TYPE_QUEUE)
> +                               flow->npc_action |= (uint64_t)rq << 20;
> +               }
>         } else if (req_act & ROC_NPC_ACTION_TYPE_DROP) {
>                 flow->npc_action = NIX_RX_ACTIONOP_DROP;
>         } else if (req_act & ROC_NPC_ACTION_TYPE_QUEUE) {
> @@ -741,8 +745,7 @@ npc_parse_actions(struct roc_npc *roc_npc, const struct roc_npc_attr *attr,
>         } else if (req_act & ROC_NPC_ACTION_TYPE_SEC) {
>                 flow->npc_action = NIX_RX_ACTIONOP_UCAST_IPSEC;
>                 flow->npc_action |= (uint64_t)rq << 20;
> -       } else if (req_act &
> -                  (ROC_NPC_ACTION_TYPE_FLAG | ROC_NPC_ACTION_TYPE_MARK)) {
> +       } else if (req_act & (ROC_NPC_ACTION_TYPE_FLAG | ROC_NPC_ACTION_TYPE_MARK)) {
>                 flow->npc_action = NIX_RX_ACTIONOP_UCAST;
>         } else if (req_act & ROC_NPC_ACTION_TYPE_COUNT) {
>                 /* Keep ROC_NPC_ACTION_TYPE_COUNT_ACT always at the end
> diff --git a/drivers/common/cnxk/roc_npc_mcam_dump.c b/drivers/common/cnxk/roc_npc_mcam_dump.c
> index 01c4212567..ebd2dd69c2 100644
> --- a/drivers/common/cnxk/roc_npc_mcam_dump.c
> +++ b/drivers/common/cnxk/roc_npc_mcam_dump.c
> @@ -496,6 +496,10 @@ npc_flow_dump_rx_action(FILE *file, uint64_t npc_action)
>                 plt_strlcpy(index_name, "Multicast/mirror table index",
>                             NPC_MAX_FIELD_NAME_SIZE);
>                 break;
> +       case NIX_RX_ACTIONOP_DEFAULT:
> +               fprintf(file, "NIX_RX_ACTIONOP_DEFAULT (%" PRIu64 ")\n",
> +                       (uint64_t)NIX_RX_ACTIONOP_DEFAULT);
> +               break;
>         default:
>                 plt_err("Unknown NIX_RX_ACTIONOP found");
>                 return;
> --
> 2.39.2
>


More information about the stable mailing list