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_decrypt.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_decrypt.c')
-rw-r--r-- | src/plugins/dpdk/ipsec/esp_decrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dpdk/ipsec/esp_decrypt.c b/src/plugins/dpdk/ipsec/esp_decrypt.c index dffcc83fa75..d7817100e4c 100644 --- a/src/plugins/dpdk/ipsec/esp_decrypt.c +++ b/src/plugins/dpdk/ipsec/esp_decrypt.c @@ -44,7 +44,7 @@ typedef enum _(DECRYPTION_FAILED, "ESP decryption failed") \ _(REPLAY, "SA replayed packet") \ _(NOT_IP, "Not IP packet (dropped)") \ - _(ENQ_FAIL, "Enqueue failed (buffer full)") \ + _(ENQ_FAIL, "Enqueue decrypt failed (queue full)") \ _(DISCARD, "Not enough crypto operations, discarding frame") \ _(BAD_LEN, "Invalid ciphertext length") \ _(SESSION, "Failed to get crypto session") \ |