DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: add PMD specific API
@ 2017-01-27 12:27 Ferruh Yigit
  2017-01-30 17:57 ` Thomas Monjalon
  2017-01-30 18:24 ` [dpdk-dev] [PATCH v2] doc: add device " Ferruh Yigit
  0 siblings, 2 replies; 8+ messages in thread
From: Ferruh Yigit @ 2017-01-27 12:27 UTC (permalink / raw)
  To: John McNamara, Helin Zhang; +Cc: dev, Ferruh Yigit

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 doc/api/doxy-api-index.md | 4 ++++
 doc/api/doxy-api.conf     | 2 ++
 2 files changed, 6 insertions(+)

diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md
index f9958c4..525d2e1 100644
--- a/doc/api/doxy-api-index.md
+++ b/doc/api/doxy-api-index.md
@@ -153,3 +153,7 @@ There are many libraries, so their headers may be grouped by topics:
   [ABI compat]         (@ref rte_compat.h),
   [keepalive]          (@ref rte_keepalive.h),
   [version]            (@ref rte_version.h)
+
+- **PMD specific**:
+  [ixgbe]              (@ref rte_pmd_ixgbe.h),
+  [i40e]               (@ref rte_pmd_i40e.h)
diff --git a/doc/api/doxy-api.conf b/doc/api/doxy-api.conf
index 6892315..b8a5fd8 100644
--- a/doc/api/doxy-api.conf
+++ b/doc/api/doxy-api.conf
@@ -32,6 +32,8 @@ PROJECT_NAME            = DPDK
 INPUT                   = doc/api/doxy-api-index.md \
                           doc/api/examples.dox \
                           drivers/net/bonding \
+                          drivers/net/i40e \
+                          drivers/net/ixgbe \
                           lib/librte_eal/common/include \
                           lib/librte_eal/common/include/generic \
                           lib/librte_acl \
-- 
2.9.3

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

* Re: [dpdk-dev] [PATCH] doc: add PMD specific API
  2017-01-27 12:27 [dpdk-dev] [PATCH] doc: add PMD specific API Ferruh Yigit
@ 2017-01-30 17:57 ` Thomas Monjalon
  2017-01-30 18:24 ` [dpdk-dev] [PATCH v2] doc: add device " Ferruh Yigit
  1 sibling, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2017-01-30 17:57 UTC (permalink / raw)
  To: Ferruh Yigit
  Cc: dev, John McNamara, Helin Zhang, Konstantin Ananyev, Jingjing Wu

2017-01-27 12:27, Ferruh Yigit:
> --- a/doc/api/doxy-api-index.md
> +++ b/doc/api/doxy-api-index.md
> @@ -153,3 +153,7 @@ There are many libraries, so their headers may be grouped by topics:
>    [ABI compat]         (@ref rte_compat.h),
>    [keepalive]          (@ref rte_keepalive.h),
>    [version]            (@ref rte_version.h)
> +
> +- **PMD specific**:
> +  [ixgbe]              (@ref rte_pmd_ixgbe.h),
> +  [i40e]               (@ref rte_pmd_i40e.h)

They could be grouped with bonding, vhost and KNI
in a section device-specific, below "device" section.

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

* [dpdk-dev] [PATCH v2] doc: add device specific API
  2017-01-27 12:27 [dpdk-dev] [PATCH] doc: add PMD specific API Ferruh Yigit
  2017-01-30 17:57 ` Thomas Monjalon
@ 2017-01-30 18:24 ` Ferruh Yigit
  2017-01-30 18:27   ` [dpdk-dev] [PATCH v3] " Ferruh Yigit
  1 sibling, 1 reply; 8+ messages in thread
From: Ferruh Yigit @ 2017-01-30 18:24 UTC (permalink / raw)
  To: Thomas Monjalon, John McNamara; +Cc: dev, Ferruh Yigit

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 doc/api/doxy-api-index.md | 6 +++++-
 doc/api/doxy-api.conf     | 2 ++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md
index f9958c4..ff57784 100644
--- a/doc/api/doxy-api-index.md
+++ b/doc/api/doxy-api-index.md
@@ -43,10 +43,14 @@ There are many libraries, so their headers may be grouped by topics:
   [rte_flow_driver]    (@ref rte_flow_driver.h),
   [cryptodev]          (@ref rte_cryptodev.h),
   [devargs]            (@ref rte_devargs.h),
+  [PCI]                (@ref rte_pci.h),
+
+- **device specific**:
   [bond]               (@ref rte_eth_bond.h),
   [vhost]              (@ref rte_virtio_net.h),
   [KNI]                (@ref rte_kni.h),
-  [PCI]                (@ref rte_pci.h),
+  [ixgbe]              (@ref rte_pmd_ixgbe.h),
+  [i40e]               (@ref rte_pmd_i40e.h)
 
 - **memory**:
   [memseg]             (@ref rte_memory.h),
diff --git a/doc/api/doxy-api.conf b/doc/api/doxy-api.conf
index 6892315..b8a5fd8 100644
--- a/doc/api/doxy-api.conf
+++ b/doc/api/doxy-api.conf
@@ -32,6 +32,8 @@ PROJECT_NAME            = DPDK
 INPUT                   = doc/api/doxy-api-index.md \
                           doc/api/examples.dox \
                           drivers/net/bonding \
+                          drivers/net/i40e \
+                          drivers/net/ixgbe \
                           lib/librte_eal/common/include \
                           lib/librte_eal/common/include/generic \
                           lib/librte_acl \
-- 
2.9.3

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

* [dpdk-dev] [PATCH v3] doc: add device specific API
  2017-01-30 18:24 ` [dpdk-dev] [PATCH v2] doc: add device " Ferruh Yigit
@ 2017-01-30 18:27   ` Ferruh Yigit
  2017-01-30 20:21     ` Thomas Monjalon
  0 siblings, 1 reply; 8+ messages in thread
From: Ferruh Yigit @ 2017-01-30 18:27 UTC (permalink / raw)
  To: Thomas Monjalon, John McNamara; +Cc: dev, Ferruh Yigit

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---

v3:
* remove "," after [PCI]
---
 doc/api/doxy-api-index.md | 6 +++++-
 doc/api/doxy-api.conf     | 2 ++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md
index f9958c4..eb39f69 100644
--- a/doc/api/doxy-api-index.md
+++ b/doc/api/doxy-api-index.md
@@ -43,10 +43,14 @@ There are many libraries, so their headers may be grouped by topics:
   [rte_flow_driver]    (@ref rte_flow_driver.h),
   [cryptodev]          (@ref rte_cryptodev.h),
   [devargs]            (@ref rte_devargs.h),
+  [PCI]                (@ref rte_pci.h)
+
+- **device specific**:
   [bond]               (@ref rte_eth_bond.h),
   [vhost]              (@ref rte_virtio_net.h),
   [KNI]                (@ref rte_kni.h),
-  [PCI]                (@ref rte_pci.h),
+  [ixgbe]              (@ref rte_pmd_ixgbe.h),
+  [i40e]               (@ref rte_pmd_i40e.h)
 
 - **memory**:
   [memseg]             (@ref rte_memory.h),
diff --git a/doc/api/doxy-api.conf b/doc/api/doxy-api.conf
index 6892315..b8a5fd8 100644
--- a/doc/api/doxy-api.conf
+++ b/doc/api/doxy-api.conf
@@ -32,6 +32,8 @@ PROJECT_NAME            = DPDK
 INPUT                   = doc/api/doxy-api-index.md \
                           doc/api/examples.dox \
                           drivers/net/bonding \
+                          drivers/net/i40e \
+                          drivers/net/ixgbe \
                           lib/librte_eal/common/include \
                           lib/librte_eal/common/include/generic \
                           lib/librte_acl \
-- 
2.9.3

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

* Re: [dpdk-dev] [PATCH v3] doc: add device specific API
  2017-01-30 18:27   ` [dpdk-dev] [PATCH v3] " Ferruh Yigit
@ 2017-01-30 20:21     ` Thomas Monjalon
  2017-01-30 20:25       ` Thomas Monjalon
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Monjalon @ 2017-01-30 20:21 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: John McNamara, dev

2017-01-30 18:27, Ferruh Yigit:
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks

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

* Re: [dpdk-dev] [PATCH v3] doc: add device specific API
  2017-01-30 20:21     ` Thomas Monjalon
@ 2017-01-30 20:25       ` Thomas Monjalon
  2017-01-30 20:27         ` Ferruh Yigit
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Monjalon @ 2017-01-30 20:25 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: John McNamara, dev

2017-01-30 21:21, Thomas Monjalon:
> 2017-01-30 18:27, Ferruh Yigit:
> > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> 
> Applied, thanks

Actually no, there are a lot of doxygen errors in ixgbe and i40e API.
I cannot be merged as is.

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

* Re: [dpdk-dev] [PATCH v3] doc: add device specific API
  2017-01-30 20:25       ` Thomas Monjalon
@ 2017-01-30 20:27         ` Ferruh Yigit
  2017-01-30 20:36           ` Thomas Monjalon
  0 siblings, 1 reply; 8+ messages in thread
From: Ferruh Yigit @ 2017-01-30 20:27 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: John McNamara, dev

On 1/30/2017 8:25 PM, Thomas Monjalon wrote:
> 2017-01-30 21:21, Thomas Monjalon:
>> 2017-01-30 18:27, Ferruh Yigit:
>>> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
>>
>> Applied, thanks
> 
> Actually no, there are a lot of doxygen errors in ixgbe and i40e API.
> I cannot be merged as is.

I already fixed and merged ixgbe and i40e doxygen errors in next-net.

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

* Re: [dpdk-dev] [PATCH v3] doc: add device specific API
  2017-01-30 20:27         ` Ferruh Yigit
@ 2017-01-30 20:36           ` Thomas Monjalon
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2017-01-30 20:36 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: John McNamara, dev

2017-01-30 20:27, Ferruh Yigit:
> On 1/30/2017 8:25 PM, Thomas Monjalon wrote:
> > 2017-01-30 21:21, Thomas Monjalon:
> >> 2017-01-30 18:27, Ferruh Yigit:
> >>> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> >>
> >> Applied, thanks
> > 
> > Actually no, there are a lot of doxygen errors in ixgbe and i40e API.
> > I cannot be merged as is.
> 
> I already fixed and merged ixgbe and i40e doxygen errors in next-net.

OK, good to know.

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

end of thread, other threads:[~2017-01-30 20:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-27 12:27 [dpdk-dev] [PATCH] doc: add PMD specific API Ferruh Yigit
2017-01-30 17:57 ` Thomas Monjalon
2017-01-30 18:24 ` [dpdk-dev] [PATCH v2] doc: add device " Ferruh Yigit
2017-01-30 18:27   ` [dpdk-dev] [PATCH v3] " Ferruh Yigit
2017-01-30 20:21     ` Thomas Monjalon
2017-01-30 20:25       ` Thomas Monjalon
2017-01-30 20:27         ` Ferruh Yigit
2017-01-30 20:36           ` Thomas Monjalon

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