examples/ipsec-secgw: avoid logs in data path
authorNithin Dabilpuram <ndabilpuram@marvell.com>
Wed, 23 Feb 2022 09:53:51 +0000 (15:23 +0530)
committerAkhil Goyal <gakhil@marvell.com>
Wed, 23 Feb 2022 10:43:14 +0000 (11:43 +0100)
Update error prints in data path to RTE_LOG_DP().
Error prints in fast path are not good for performance
as they slow down the application when few bad packets are
received.

Signed-off-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
Acked-by: Akhil Goyal <gakhil@marvell.com>
examples/ipsec-secgw/ipsec_worker.c

index 7419e85..e9493c5 100644 (file)
@@ -332,7 +332,8 @@ process_ipsec_ev_inbound(struct ipsec_ctx *ctx, struct route_table *rt,
                break;
 
        default:
-               RTE_LOG(ERR, IPSEC, "Unsupported packet type = %d\n", type);
+               RTE_LOG_DP(DEBUG, IPSEC_ESP, "Unsupported packet type = %d\n",
+                          type);
                goto drop_pkt_and_exit;
        }
 
@@ -570,7 +571,8 @@ classify_pkt(struct rte_mbuf *pkt, struct ipsec_traffic *t)
                t->ip6.pkts[(t->ip6.num)++] = pkt;
                break;
        default:
-               RTE_LOG(ERR, IPSEC, "Unsupported packet type = %d\n", type);
+               RTE_LOG_DP(DEBUG, IPSEC_ESP, "Unsupported packet type = %d\n",
+                          type);
                free_pkts(&pkt, 1);
                break;
        }