patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 5/5] bus/pci: remove duplicate declaration
       [not found] <20200914081727.12215-1-david.marchand@redhat.com>
@ 2020-09-14  8:17 ` David Marchand
       [not found] ` <20200914082350.13279-1-david.marchand@redhat.com>
       [not found] ` <20200917112823.10534-1-david.marchand@redhat.com>
  2 siblings, 0 replies; 4+ messages in thread
From: David Marchand @ 2020-09-14  8:17 UTC (permalink / raw)
  To: dev; +Cc: stable, Stephen Hemminger, Gaetan Rivet, Thomas Monjalon

This declaration is the same as the one a few lines before.

Fixes: 6844d146ff39 ("eal: add bus pointer in device structure")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 drivers/bus/pci/private.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/bus/pci/private.h b/drivers/bus/pci/private.h
index 530123767b..9aa7e67c73 100644
--- a/drivers/bus/pci/private.h
+++ b/drivers/bus/pci/private.h
@@ -15,8 +15,6 @@ extern struct rte_pci_bus rte_pci_bus;
 struct rte_pci_driver;
 struct rte_pci_device;
 
-extern struct rte_pci_bus rte_pci_bus;
-
 /**
  * Scan the content of the PCI bus, and the devices in the devices
  * list
-- 
2.23.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [dpdk-stable] [PATCH v2 6/6] bus/pci: remove duplicate declaration
       [not found] ` <20200914082350.13279-1-david.marchand@redhat.com>
@ 2020-09-14  8:23   ` David Marchand
  2020-09-14 10:24     ` [dpdk-stable] [dpdk-dev] " Andrew Rybchenko
  0 siblings, 1 reply; 4+ messages in thread
From: David Marchand @ 2020-09-14  8:23 UTC (permalink / raw)
  To: dev; +Cc: stable, Stephen Hemminger, Gaetan Rivet, Thomas Monjalon

This declaration is the same as the one a few lines before.

Fixes: 6844d146ff39 ("eal: add bus pointer in device structure")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 drivers/bus/pci/private.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/bus/pci/private.h b/drivers/bus/pci/private.h
index 530123767b..9aa7e67c73 100644
--- a/drivers/bus/pci/private.h
+++ b/drivers/bus/pci/private.h
@@ -15,8 +15,6 @@ extern struct rte_pci_bus rte_pci_bus;
 struct rte_pci_driver;
 struct rte_pci_device;
 
-extern struct rte_pci_bus rte_pci_bus;
-
 /**
  * Scan the content of the PCI bus, and the devices in the devices
  * list
-- 
2.23.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-stable] [dpdk-dev] [PATCH v2 6/6] bus/pci: remove duplicate declaration
  2020-09-14  8:23   ` [dpdk-stable] [PATCH v2 6/6] " David Marchand
@ 2020-09-14 10:24     ` Andrew Rybchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Rybchenko @ 2020-09-14 10:24 UTC (permalink / raw)
  To: David Marchand, dev
  Cc: stable, Stephen Hemminger, Gaetan Rivet, Thomas Monjalon

On 9/14/20 11:23 AM, David Marchand wrote:
> This declaration is the same as the one a few lines before.
> 
> Fixes: 6844d146ff39 ("eal: add bus pointer in device structure")
> Cc: stable@dpdk.org
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>

Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [dpdk-stable] [PATCH v3 6/6] bus/pci: remove duplicate declaration
       [not found] ` <20200917112823.10534-1-david.marchand@redhat.com>
@ 2020-09-17 11:28   ` David Marchand
  0 siblings, 0 replies; 4+ messages in thread
From: David Marchand @ 2020-09-17 11:28 UTC (permalink / raw)
  To: dev; +Cc: arybchenko, stable, Stephen Hemminger, Gaetan Rivet, Thomas Monjalon

This declaration is the same as the one a few lines before.

Fixes: 6844d146ff39 ("eal: add bus pointer in device structure")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 drivers/bus/pci/private.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/bus/pci/private.h b/drivers/bus/pci/private.h
index fadc767236..16f997c701 100644
--- a/drivers/bus/pci/private.h
+++ b/drivers/bus/pci/private.h
@@ -15,8 +15,6 @@ extern struct rte_pci_bus rte_pci_bus;
 struct rte_pci_driver;
 struct rte_pci_device;
 
-extern struct rte_pci_bus rte_pci_bus;
-
 /**
  * Scan the content of the PCI bus, and the devices in the devices
  * list
-- 
2.23.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-09-17 11:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200914081727.12215-1-david.marchand@redhat.com>
2020-09-14  8:17 ` [dpdk-stable] [PATCH 5/5] bus/pci: remove duplicate declaration David Marchand
     [not found] ` <20200914082350.13279-1-david.marchand@redhat.com>
2020-09-14  8:23   ` [dpdk-stable] [PATCH v2 6/6] " David Marchand
2020-09-14 10:24     ` [dpdk-stable] [dpdk-dev] " Andrew Rybchenko
     [not found] ` <20200917112823.10534-1-david.marchand@redhat.com>
2020-09-17 11:28   ` [dpdk-stable] [PATCH v3 " David Marchand

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).