summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2023-12-04 18:09:52 -0800
committerDavid Marchand <david.marchand@redhat.com>2023-12-06 10:26:46 +0100
commitf2d5afbb2c05d7647da7ea914887c52115652651 (patch)
treeeb770707768a4f6e81907f21b44a192b57c18595 /examples
parentf541aa2d41f8939b687e4d145a5dd18bd16f593e (diff)
examples/ipsec-secgw: fix some logtype
Looks like some code got copy/paste in to the IPSEC gateway example from another place. Shouldn't be using RTE_LOGTYPE_PORT here. Fixes: ec17993a145a ("examples/ipsec-secgw: support security offload") Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Akhil Goyal <gakhil@marvell.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/ipsec-secgw/sa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/ipsec-secgw/sa.c b/examples/ipsec-secgw/sa.c
index 6ae0e49fd7..c4bac17cd7 100644
--- a/examples/ipsec-secgw/sa.c
+++ b/examples/ipsec-secgw/sa.c
@@ -1128,7 +1128,7 @@ check_eth_dev_caps(uint16_t portid, uint32_t inbound, uint32_t tso)
if (inbound) {
if ((dev_info.rx_offload_capa &
RTE_ETH_RX_OFFLOAD_SECURITY) == 0) {
- RTE_LOG(WARNING, PORT,
+ RTE_LOG(WARNING, IPSEC,
"hardware RX IPSec offload is not supported\n");
return -EINVAL;
}
@@ -1136,13 +1136,13 @@ check_eth_dev_caps(uint16_t portid, uint32_t inbound, uint32_t tso)
} else { /* outbound */
if ((dev_info.tx_offload_capa &
RTE_ETH_TX_OFFLOAD_SECURITY) == 0) {
- RTE_LOG(WARNING, PORT,
+ RTE_LOG(WARNING, IPSEC,
"hardware TX IPSec offload is not supported\n");
return -EINVAL;
}
if (tso && (dev_info.tx_offload_capa &
RTE_ETH_TX_OFFLOAD_TCP_TSO) == 0) {
- RTE_LOG(WARNING, PORT,
+ RTE_LOG(WARNING, IPSEC,
"hardware TCP TSO offload is not supported\n");
return -EINVAL;
}