DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete
@ 2016-12-06 12:38 Baruch Siach
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory Baruch Siach
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Baruch Siach @ 2016-12-06 12:38 UTC (permalink / raw)
  To: dev; +Cc: John McNamara, Baruch Siach

Extend the note at the end of Source Organization chapter to also mention
the app directory.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
v2: Refer to 'applications' in general (John M)
---
 doc/guides/prog_guide/source_org.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guides/prog_guide/source_org.rst b/doc/guides/prog_guide/source_org.rst
index 4a4a0a325dd7..be4b564fb23e 100644
--- a/doc/guides/prog_guide/source_org.rst
+++ b/doc/guides/prog_guide/source_org.rst
@@ -162,5 +162,5 @@ The examples directory contains sample applications that show how libraries can
 
 .. note::
 
-    The actual examples directory may contain additional sample applications to those shown above.
+    The actual app and examples directories may contain additional applications to those shown above.
     Check the latest DPDK source files for details.
-- 
2.10.2

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

* [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory
  2016-12-06 12:38 [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Baruch Siach
@ 2016-12-06 12:38 ` Baruch Siach
  2016-12-06 12:48   ` Mcnamara, John
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 3/3] doc: consistently quote directory names Baruch Siach
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Baruch Siach @ 2016-12-06 12:38 UTC (permalink / raw)
  To: dev; +Cc: John McNamara, Baruch Siach

The applications under the app directory are just that, not sample
applications.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
v2: New patch (John M)
---
 doc/guides/prog_guide/source_org.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guides/prog_guide/source_org.rst b/doc/guides/prog_guide/source_org.rst
index be4b564fb23e..27e18e8951a0 100644
--- a/doc/guides/prog_guide/source_org.rst
+++ b/doc/guides/prog_guide/source_org.rst
@@ -125,7 +125,7 @@ Applications
 Applications are source files that contain a ``main()`` function.
 They are located in the ``$(RTE_SDK)/app`` and ``$(RTE_SDK)/examples`` directories.
 
-The app directory contains sample applications that are used to test DPDK (such as autotests)
+The app directory contains applications that are used to test DPDK (such as autotests)
 or the Poll Mode Drivers (test-pmd)::
 
     app
-- 
2.10.2

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

* [dpdk-dev] [PATCH v2 3/3] doc: consistently quote directory names
  2016-12-06 12:38 [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Baruch Siach
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory Baruch Siach
@ 2016-12-06 12:38 ` Baruch Siach
  2016-12-06 12:48   ` Mcnamara, John
  2016-12-06 12:48 ` [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Mcnamara, John
  2016-12-06 16:53 ` Thomas Monjalon
  3 siblings, 1 reply; 8+ messages in thread
From: Baruch Siach @ 2016-12-06 12:38 UTC (permalink / raw)
  To: dev; +Cc: John McNamara, Baruch Siach

Quote the names of the app and example directories like other directory
names in this chapter.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
v2: New patch
---
 doc/guides/prog_guide/source_org.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/guides/prog_guide/source_org.rst b/doc/guides/prog_guide/source_org.rst
index 27e18e8951a0..6167384db4d3 100644
--- a/doc/guides/prog_guide/source_org.rst
+++ b/doc/guides/prog_guide/source_org.rst
@@ -125,7 +125,7 @@ Applications
 Applications are source files that contain a ``main()`` function.
 They are located in the ``$(RTE_SDK)/app`` and ``$(RTE_SDK)/examples`` directories.
 
-The app directory contains applications that are used to test DPDK (such as autotests)
+The ``app`` directory contains applications that are used to test DPDK (such as autotests)
 or the Poll Mode Drivers (test-pmd)::
 
     app
@@ -135,7 +135,7 @@ or the Poll Mode Drivers (test-pmd)::
     +-- test-pipeline      # Test the IP Pipeline framework
     +-- test-pmd           # Test and benchmark poll mode drivers
 
-The examples directory contains sample applications that show how libraries can be used::
+The ``examples`` directory contains sample applications that show how libraries can be used::
 
     examples
     +-- cmdline            # Example of using the cmdline library
@@ -162,5 +162,5 @@ The examples directory contains sample applications that show how libraries can
 
 .. note::
 
-    The actual app and examples directories may contain additional applications to those shown above.
+    The actual ``app`` and ``examples`` directories may contain additional applications to those shown above.
     Check the latest DPDK source files for details.
-- 
2.10.2

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

* Re: [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete
  2016-12-06 12:38 [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Baruch Siach
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory Baruch Siach
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 3/3] doc: consistently quote directory names Baruch Siach
@ 2016-12-06 12:48 ` Mcnamara, John
  2016-12-06 16:53 ` Thomas Monjalon
  3 siblings, 0 replies; 8+ messages in thread
From: Mcnamara, John @ 2016-12-06 12:48 UTC (permalink / raw)
  To: Baruch Siach, dev

Acked-by: John McNamara <john.mcnamara@intel.com>


> -----Original Message-----
> From: Baruch Siach [mailto:baruch@tkos.co.il]
> Sent: Tuesday, December 6, 2016 12:38 PM
> To: dev@dpdk.org
> Cc: Mcnamara, John <john.mcnamara@intel.com>; Baruch Siach
> <baruch@tkos.co.il>
> Subject: [PATCH v2 1/3] doc: note that the app list is incomplete
> 
> Extend the note at the end of Source Organization chapter to also mention
> the app directory.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Acked-by: John McNamara <john.mcnamara@intel.com>

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

* Re: [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory Baruch Siach
@ 2016-12-06 12:48   ` Mcnamara, John
  0 siblings, 0 replies; 8+ messages in thread
From: Mcnamara, John @ 2016-12-06 12:48 UTC (permalink / raw)
  To: Baruch Siach, dev



> -----Original Message-----
> From: Baruch Siach [mailto:baruch@tkos.co.il]
> Sent: Tuesday, December 6, 2016 12:38 PM
> To: dev@dpdk.org
> Cc: Mcnamara, John <john.mcnamara@intel.com>; Baruch Siach
> <baruch@tkos.co.il>
> Subject: [PATCH v2 2/3] doc: correct the description of the app directory
> 
> The applications under the app directory are just that, not sample
> applications.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Acked-by: John McNamara <john.mcnamara@intel.com>

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

* Re: [dpdk-dev] [PATCH v2 3/3] doc: consistently quote directory names
  2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 3/3] doc: consistently quote directory names Baruch Siach
@ 2016-12-06 12:48   ` Mcnamara, John
  0 siblings, 0 replies; 8+ messages in thread
From: Mcnamara, John @ 2016-12-06 12:48 UTC (permalink / raw)
  To: Baruch Siach, dev



> -----Original Message-----
> From: Baruch Siach [mailto:baruch@tkos.co.il]
> Sent: Tuesday, December 6, 2016 12:38 PM
> To: dev@dpdk.org
> Cc: Mcnamara, John <john.mcnamara@intel.com>; Baruch Siach
> <baruch@tkos.co.il>
> Subject: [PATCH v2 3/3] doc: consistently quote directory names
> 
> Quote the names of the app and example directories like other directory
> names in this chapter.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Acked-by: John McNamara <john.mcnamara@intel.com>

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

* Re: [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete
  2016-12-06 12:38 [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Baruch Siach
                   ` (2 preceding siblings ...)
  2016-12-06 12:48 ` [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Mcnamara, John
@ 2016-12-06 16:53 ` Thomas Monjalon
  2017-02-09 14:49   ` Thomas Monjalon
  3 siblings, 1 reply; 8+ messages in thread
From: Thomas Monjalon @ 2016-12-06 16:53 UTC (permalink / raw)
  To: Baruch Siach; +Cc: dev, John McNamara

2016-12-06 14:38, Baruch Siach:
> Extend the note at the end of Source Organization chapter to also mention
> the app directory.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
[...]
> --- a/doc/guides/prog_guide/source_org.rst
> +++ b/doc/guides/prog_guide/source_org.rst
> @@ -162,5 +162,5 @@ The examples directory contains sample applications that show how libraries can
>  
>  .. note::
>  
> -    The actual examples directory may contain additional sample applications to those shown above.
> +    The actual app and examples directories may contain additional applications to those shown above.
>      Check the latest DPDK source files for details.

I suggest to remove this file.
Each libraries, drivers and applications are documented somewhere else.
We really must avoid repeating ourself in the documentation and keep
a reasonnably maintainable documentation.

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

* Re: [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete
  2016-12-06 16:53 ` Thomas Monjalon
@ 2017-02-09 14:49   ` Thomas Monjalon
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2017-02-09 14:49 UTC (permalink / raw)
  To: Baruch Siach, John McNamara; +Cc: dev

2016-12-06 17:53, Thomas Monjalon:
> 2016-12-06 14:38, Baruch Siach:
> > Extend the note at the end of Source Organization chapter to also mention
> > the app directory.
> > 
> > Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> [...]
> > --- a/doc/guides/prog_guide/source_org.rst
> > +++ b/doc/guides/prog_guide/source_org.rst
> > @@ -162,5 +162,5 @@ The examples directory contains sample applications that show how libraries can
> >  
> >  .. note::
> >  
> > -    The actual examples directory may contain additional sample applications to those shown above.
> > +    The actual app and examples directories may contain additional applications to those shown above.
> >      Check the latest DPDK source files for details.
> 
> I suggest to remove this file.
> Each libraries, drivers and applications are documented somewhere else.
> We really must avoid repeating ourself in the documentation and keep
> a reasonnably maintainable documentation.

Any comment?

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

end of thread, other threads:[~2017-02-09 14:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-06 12:38 [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Baruch Siach
2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 2/3] doc: correct the description of the app directory Baruch Siach
2016-12-06 12:48   ` Mcnamara, John
2016-12-06 12:38 ` [dpdk-dev] [PATCH v2 3/3] doc: consistently quote directory names Baruch Siach
2016-12-06 12:48   ` Mcnamara, John
2016-12-06 12:48 ` [dpdk-dev] [PATCH v2 1/3] doc: note that the app list is incomplete Mcnamara, John
2016-12-06 16:53 ` Thomas Monjalon
2017-02-09 14:49   ` 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).