DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jasvinder Singh <jasvinder.singh@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH] ip_pipeline: add check on nic's rxq and txq
Date: Mon,  7 Sep 2015 13:53:55 +0100	[thread overview]
Message-ID: <1441630435-14158-1-git-send-email-jasvinder.singh@intel.com> (raw)

This patch checks that rx queue and tx queue of each link
specified in ip pipeline configuration file are used.

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
---
 examples/ip_pipeline/config_check.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/examples/ip_pipeline/config_check.c b/examples/ip_pipeline/config_check.c
index 07f4c8b..b843926 100644
--- a/examples/ip_pipeline/config_check.c
+++ b/examples/ip_pipeline/config_check.c
@@ -95,6 +95,8 @@ check_links(struct app_params *app)
 				"%s RXQs are not contiguous (A)\n", link->name);
 
 		n_rxq = app_link_get_n_rxq(app, link);
+		
+		APP_CHECK((n_rxq),  "%s does not have any RXQ \n", link->name);
 
 		APP_CHECK((n_rxq == rxq_max + 1),
 			"%s RXQs are not contiguous (B)\n", link->name);
@@ -112,7 +114,9 @@ check_links(struct app_params *app)
 
 		/* Check that link RXQs are contiguous */
 		n_txq = app_link_get_n_txq(app, link);
-
+		
+		APP_CHECK((n_txq),  "%s does not have any TXQ \n", link->name);
+		
 		for (i = 0; i < n_txq; i++) {
 			char name[APP_PARAM_NAME_SIZE];
 			int pos;
-- 
2.1.0

             reply	other threads:[~2015-09-07 12:53 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-07 12:53 Jasvinder Singh [this message]
2015-09-07 13:29 ` Dumitrescu, Cristian
2015-12-01 12:23 ` [dpdk-dev] [PATCH v2] " Jasvinder Singh
2015-12-07  0:34   ` 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=1441630435-14158-1-git-send-email-jasvinder.singh@intel.com \
    --to=jasvinder.singh@intel.com \
    --cc=dev@dpdk.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).