All of lore.kernel.org
 help / color / mirror / Atom feed
From: Deepak Kumar Jain <deepak.k.jain@intel.com>
To: dev@dpdk.org
Cc: john.griffin@intel.com, arkadiuszx.kusztal@intel.com,
	Deepak Kumar Jain <deepak.k.jain@intel.com>
Subject: [PATCH] app/test: fix for icc compilation error
Date: Wed, 22 Jun 2016 17:13:55 +0100	[thread overview]
Message-ID: <1466612035-28013-1-git-send-email-deepak.k.jain@intel.com> (raw)

Icc complains about variable may be used without setting.

Fixes: 97fe6461c7cbfb ("app/test: add SNOW 3G performance test)

Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
---
 app/test/test_cryptodev_perf.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c
index e1adc99..e484cbb 100644
--- a/app/test/test_cryptodev_perf.c
+++ b/app/test/test_cryptodev_perf.c
@@ -2458,18 +2458,17 @@ test_perf_aes_sha(uint8_t dev_id, uint16_t queue_id,
 
 	/* Generate a burst of crypto operations */
 	for (i = 0; i < (pparams->burst_size * NUM_MBUF_SETS); i++) {
-		struct rte_mbuf *m = test_perf_create_pktmbuf(
+		mbufs[i] = test_perf_create_pktmbuf(
 				ts_params->mbuf_mp,
 				pparams->buf_size);
 
-		if (m == NULL) {
+		if (mbufs[i] == NULL) {
 			printf("\nFailed to get mbuf - freeing the rest.\n");
 			for (k = 0; k < i; k++)
 				rte_pktmbuf_free(mbufs[k]);
 			return -1;
 		}
 
-		mbufs[i] = m;
 	}
 
 
@@ -2587,18 +2586,17 @@ test_perf_snow3g(uint8_t dev_id, uint16_t queue_id,
 
 	/* Generate a burst of crypto operations */
 	for (i = 0; i < (pparams->burst_size * NUM_MBUF_SETS); i++) {
-		struct rte_mbuf *m = test_perf_create_pktmbuf(
+		mbufs[i] = test_perf_create_pktmbuf(
 				ts_params->mbuf_mp,
 				pparams->buf_size);
 
-		if (m == NULL) {
+		if (mbufs[i] == NULL) {
 			printf("\nFailed to get mbuf - freeing the rest.\n");
 			for (k = 0; k < i; k++)
 				rte_pktmbuf_free(mbufs[k]);
 			return -1;
 		}
 
-		mbufs[i] = m;
 	}
 
 	tsc_start = rte_rdtsc_precise();
-- 
2.5.5

             reply	other threads:[~2016-06-22 16:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-22 16:13 Deepak Kumar Jain [this message]
2016-06-22 16:22 ` [PATCH] app/test: fix for icc compilation error John Griffin
2016-06-27 10:32   ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1466612035-28013-1-git-send-email-deepak.k.jain@intel.com \
    --to=deepak.k.jain@intel.com \
    --cc=arkadiuszx.kusztal@intel.com \
    --cc=dev@dpdk.org \
    --cc=john.griffin@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.