DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Nikhil Rao <nikhil.rao@intel.com>,
	Jerin Jacob <jerin.jacob@caviumnetworks.com>
Cc: dev@dpdk.org, Ferruh Yigit <ferruh.yigit@intel.com>,
	stable@dpdk.org, sunila.sahu@caviumnetworks.com,
	rasesh.mody@cavium.com, roy.fan.zhang@intel.com
Subject: [dpdk-dev] [PATCH] eventdev: prefix global variable
Date: Wed,  3 Oct 2018 14:48:11 +0100	[thread overview]
Message-ID: <20181003134811.64662-1-ferruh.yigit@intel.com> (raw)

A global defined with name "stats".

DPDK is a library, please don't define global variables with this
generic name.

Fixes: b1ce8ebd97ba ("eventdev: add PMD callbacks for eth Rx adapter")
Cc: stable@dpdk.org

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
There are already questions about that "stats" variable:
- Why a global variable defined in header file?
- It seems it is not used at all, remove it?
  Forgotten to be removed in below commit, but because of generic
  "stats" name, it didn't cause any compile error but happily used
  global variable
  Fixes: 3810ae435783 ("eventdev: add interrupt driven queues to Rx adapter")

But this patch mainly sent as an RFC, to ask what would you think about
a cleanup patch to add the library prefix for all the global variables
that are defined in libries? (yes we have lots of them)

Like:
zip_cc --> octeontx_zip_cc [1]
valid_args --> qede_valid_args [2]
scheduler --> crypto_scheduler [3]

[1]
Argh! This also looks wrong, I think intention was make this enum
name instead of global variable, can you please check. (This was random
sample I chosed.)
Commit 43e610bb8565 ("compress/octeontx: introduce octeontx zip PMD")
Cc: sunila.sahu@caviumnetworks.com

[2]
This is also wrong, it should be static,
Commit f64b91b0eb5d ("net/qede: replace config option with run-time arg")
Cc: rasesh.mody@cavium.com

[3]
This should be static too,
Commit 100e4f7e44ab ("crypto/scheduler: add round-robin mode")
Cc: roy.fan.zhang@intel.com
---
 lib/librte_eventdev/rte_event_eth_rx_adapter.c | 2 +-
 lib/librte_eventdev/rte_eventdev_pmd.h         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/librte_eventdev/rte_event_eth_rx_adapter.c b/lib/librte_eventdev/rte_event_eth_rx_adapter.c
index 870ac8c3b..5d7d8435b 100644
--- a/lib/librte_eventdev/rte_event_eth_rx_adapter.c
+++ b/lib/librte_eventdev/rte_event_eth_rx_adapter.c
@@ -1125,7 +1125,7 @@ rxa_poll(struct rte_event_eth_rx_adapter *rx_adapter)
 	wrr_pos = rx_adapter->wrr_pos;
 	max_nb_rx = rx_adapter->max_nb_rx;
 	buf = &rx_adapter->event_enqueue_buffer;
-	stats = &rx_adapter->stats;
+	rte_eventdev_stats = &rx_adapter->stats;
 
 	/* Iterate through a WRR sequence */
 	for (num_queue = 0; num_queue < rx_adapter->wrr_len; num_queue++) {
diff --git a/lib/librte_eventdev/rte_eventdev_pmd.h b/lib/librte_eventdev/rte_eventdev_pmd.h
index 792fb3a23..14f9e4520 100644
--- a/lib/librte_eventdev/rte_eventdev_pmd.h
+++ b/lib/librte_eventdev/rte_eventdev_pmd.h
@@ -592,7 +592,7 @@ typedef int (*eventdev_eth_rx_adapter_stop_t)
 					(const struct rte_eventdev *dev,
 					const struct rte_eth_dev *eth_dev);
 
-struct rte_event_eth_rx_adapter_stats *stats;
+struct rte_event_eth_rx_adapter_stats *rte_eventdev_stats;
 
 /**
  * Retrieve ethernet Rx adapter statistics.
-- 
2.17.1

             reply	other threads:[~2018-10-03 12:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-03 13:48 Ferruh Yigit [this message]
2018-10-05  8:55 ` Ferruh Yigit

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=20181003134811.64662-1-ferruh.yigit@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=dev@dpdk.org \
    --cc=jerin.jacob@caviumnetworks.com \
    --cc=nikhil.rao@intel.com \
    --cc=rasesh.mody@cavium.com \
    --cc=roy.fan.zhang@intel.com \
    --cc=stable@dpdk.org \
    --cc=sunila.sahu@caviumnetworks.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 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).