diff options
author | Christian Hopps <chopps@labn.net> | 2020-07-14 09:41:43 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-09-04 12:12:57 +0000 |
commit | 942b9803f842fc520e9c7518ff2fcffbb5d0f14e (patch) | |
tree | cf767f4bca7385be846f72f92824a4421a38539d /src/plugins/dpdk/ipsec/esp_encrypt.c | |
parent | d570e53c74306d3aa237acbd56357a85b9d693a3 (diff) |
dpdk-ipsec: fix show output
Fix the shown crypto inflight counts which were reversed. Also improve a
couple error descriptions to tell them apart when viewed.
Type: fix
Signed-off-by: Christian Hopps <chopps@labn.net>
Change-Id: I6d4054c64aa842658cfcde8969c7aa48f6d21207
Diffstat (limited to 'src/plugins/dpdk/ipsec/esp_encrypt.c')
-rw-r--r-- | src/plugins/dpdk/ipsec/esp_encrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dpdk/ipsec/esp_encrypt.c b/src/plugins/dpdk/ipsec/esp_encrypt.c index 64b862430b5..e78cb2d88d4 100644 --- a/src/plugins/dpdk/ipsec/esp_encrypt.c +++ b/src/plugins/dpdk/ipsec/esp_encrypt.c @@ -45,7 +45,7 @@ typedef enum #define foreach_esp_encrypt_error \ _(RX_PKTS, "ESP pkts received") \ _(SEQ_CYCLED, "Sequence number cycled") \ - _(ENQ_FAIL, "Enqueue failed to crypto device") \ + _(ENQ_FAIL, "Enqueue encrypt failed (queue full)") \ _(DISCARD, "Not enough crypto operations, discarding frame") \ _(SESSION, "Failed to get crypto session") \ _(NOSUP, "Cipher/Auth not supported") |