DPDK patches and discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>
Subject: [dpdk-dev] [PATCH 3/5] ark: remove register keyword
Date: Tue, 31 Jul 2018 09:30:57 -0700	[thread overview]
Message-ID: <20180731163059.27085-4-stephen@networkplumber.org> (raw)
In-Reply-To: <20180731163059.27085-1-stephen@networkplumber.org>

No need for register keyword with modern compilers.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 drivers/net/ark/ark_ethdev_rx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ark/ark_ethdev_rx.c b/drivers/net/ark/ark_ethdev_rx.c
index 16f0d11ecac5..19e10955103e 100644
--- a/drivers/net/ark/ark_ethdev_rx.c
+++ b/drivers/net/ark/ark_ethdev_rx.c
@@ -236,7 +236,7 @@ eth_ark_recv_pkts(void *rx_queue,
 		  uint16_t nb_pkts)
 {
 	struct ark_rx_queue *queue;
-	register uint32_t cons_index, prod_index;
+	uint32_t cons_index, prod_index;
 	uint16_t nb;
 	struct rte_mbuf *mbuf;
 	struct ark_rx_meta *meta;
@@ -364,7 +364,7 @@ eth_ark_rx_jumbo(struct ark_rx_queue *queue,
 static void
 eth_ark_rx_queue_drain(struct ark_rx_queue *queue)
 {
-	register uint32_t cons_index;
+	uint32_t cons_index;
 	struct rte_mbuf *mbuf;
 
 	cons_index = queue->cons_index;
-- 
2.18.0

  parent reply	other threads:[~2018-07-31 16:31 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-31 16:30 [dpdk-dev] [PATCH 0/5] remove usage of register keyword in C Stephen Hemminger
2018-07-31 16:30 ` [dpdk-dev] [PATCH 1/5] qat: remove redundant C register keyword Stephen Hemminger
2018-09-05 10:23   ` Jozwiak, TomaszX
2018-07-31 16:30 ` [dpdk-dev] [PATCH 2/5] qede: remove register from declaraitons Stephen Hemminger
2018-07-31 16:30 ` Stephen Hemminger [this message]
2018-07-31 16:30 ` [dpdk-dev] [PATCH 4/5] mlx5: no need for register keyword Stephen Hemminger
2018-07-31 16:30 ` [dpdk-dev] [PATCH 5/5] mlx4: remove redunant " Stephen Hemminger
2018-07-31 16:48 ` [dpdk-dev] [PATCH 0/5] remove usage of register keyword in C Adrien Mazarguil
2018-07-31 18:07   ` Stephen Hemminger
2018-08-01 18:03     ` Yongseok Koh
2018-08-01 21:03       ` Stephen Hemminger
2018-08-23 13:07         ` Ferruh Yigit
2018-10-09  9:19           ` Ferruh Yigit
2019-01-31  8:02             ` Tom Barbette
2019-01-31  9:11               ` Bruce Richardson
2019-01-31  9:39                 ` Tom Barbette
2019-01-31 17:34                 ` Wiles, Keith
2018-08-01 10:18 ` Matan Azrad

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=20180731163059.27085-4-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --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).