From 936724c8166feef1da211b828314f5fc1d7f8c3f Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Wed, 15 Jun 2016 15:11:19 +0100 Subject: [PATCH] app/test: remove unnecessary hexdump Fixes: 202d375c60bc1 ("app/test: add cryptodev unit and performance tests") Signed-off-by: Pablo de Lara Acked-by: Fan Zhang --- app/test/test_cryptodev.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 5674534fd8..a5b34e2622 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -112,21 +112,9 @@ setup_test_string(struct rte_mempool *mpool, return m; } -#if HEX_DUMP -static void -hexdump_mbuf_data(FILE *f, const char *title, struct rte_mbuf *m) -{ - rte_hexdump(f, title, rte_pktmbuf_mtod(m, const void *), m->data_len); -} -#endif - static struct rte_crypto_op * process_crypto_request(uint8_t dev_id, struct rte_crypto_op *op) { -#if HEX_DUMP - hexdump_mbuf_data(stdout, "Enqueued Packet", ibuf); -#endif - if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) { printf("Error sending packet for encryption"); return NULL; @@ -137,11 +125,6 @@ process_crypto_request(uint8_t dev_id, struct rte_crypto_op *op) while (rte_cryptodev_dequeue_burst(dev_id, 0, &op, 1) == 0) rte_pause(); -#if HEX_DUMP - if (obuf) - hexdump_mbuf_data(stdout, "Dequeued Packet", obuf); -#endif - return op; } -- 2.20.1