DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] maintainers: fix prog guide paths
@ 2024-09-25 21:22 Thomas Monjalon
  2024-09-26  2:00 ` fengchengwen
  2024-09-28 18:35 ` Stephen Hemminger
  0 siblings, 2 replies; 4+ messages in thread
From: Thomas Monjalon @ 2024-09-25 21:22 UTC (permalink / raw)
  To: dev; +Cc: David Young

When moving some files in doc subdirectories for ethdev and eventdev,
the references in the file MAINTAINERS were forgotten.
The new paths are used in this fix.

Fixes: 41dd9a6bc2d9 ("doc: reorganize prog guide")

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
 MAINTAINERS | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index c5a703b5c0..af2620bf0a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -423,27 +423,27 @@ T: git://dpdk.org/next/dpdk-next-net
 F: lib/ethdev/
 F: app/test/test_ethdev*
 F: devtools/test-null.sh
-F: doc/guides/prog_guide/switch_representation.rst
+F: doc/guides/prog_guide/ethdev/switch_representation.rst
 
 Flow API
 M: Ori Kam <orika@nvidia.com>
 T: git://dpdk.org/next/dpdk-next-net
 F: app/test-pmd/cmdline_flow.c
-F: doc/guides/prog_guide/rte_flow.rst
+F: doc/guides/prog_guide/ethdev/flow_offload.rst
 F: lib/ethdev/rte_flow*
 
 Traffic Management API
 M: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
 T: git://dpdk.org/next/dpdk-next-net
 F: lib/ethdev/rte_tm*
-F: doc/guides/prog_guide/traffic_management.rst
+F: doc/guides/prog_guide/ethdev/traffic_management.rst
 F: app/test-pmd/cmdline_tm.*
 
 Traffic Metering and Policing API - EXPERIMENTAL
 M: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
 T: git://dpdk.org/next/dpdk-next-net
 F: lib/ethdev/rte_mtr*
-F: doc/guides/prog_guide/traffic_metering_and_policing.rst
+F: doc/guides/prog_guide/ethdev/traffic_metering_and_policing.rst
 F: app/test-pmd/cmdline_mtr.*
 
 Baseband API
@@ -520,7 +520,7 @@ Eventdev API
 M: Jerin Jacob <jerinj@marvell.com>
 T: git://dpdk.org/next/dpdk-next-eventdev
 F: lib/eventdev/
-F: doc/guides/prog_guide/eventdev.rst
+F: doc/guides/prog_guide/eventdev/eventdev.rst
 F: drivers/event/skeleton/
 F: app/test/test_eventdev.c
 F: examples/l3fwd/l3fwd_event*
@@ -530,35 +530,35 @@ M: Naga Harish K S V <s.v.naga.harish.k@intel.com>
 T: git://dpdk.org/next/dpdk-next-eventdev
 F: lib/eventdev/*eth_rx_adapter*
 F: app/test/test_event_eth_rx_adapter.c
-F: doc/guides/prog_guide/event_ethernet_rx_adapter.rst
+F: doc/guides/prog_guide/eventdev/event_ethernet_rx_adapter.rst
 
 Eventdev Ethdev Tx Adapter API
 M: Naga Harish K S V <s.v.naga.harish.k@intel.com>
 T: git://dpdk.org/next/dpdk-next-eventdev
 F: lib/eventdev/*eth_tx_adapter*
 F: app/test/test_event_eth_tx_adapter.c
-F: doc/guides/prog_guide/event_ethernet_tx_adapter.rst
+F: doc/guides/prog_guide/eventdev/event_ethernet_tx_adapter.rst
 
 Eventdev Timer Adapter API
 M: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
 T: git://dpdk.org/next/dpdk-next-eventdev
 F: lib/eventdev/*timer_adapter*
 F: app/test/test_event_timer_adapter.c
-F: doc/guides/prog_guide/event_timer_adapter.rst
+F: doc/guides/prog_guide/eventdev/event_timer_adapter.rst
 
 Eventdev Crypto Adapter API
 M: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
 T: git://dpdk.org/next/dpdk-next-eventdev
 F: lib/eventdev/*crypto_adapter*
 F: app/test/test_event_crypto_adapter.c
-F: doc/guides/prog_guide/event_crypto_adapter.rst
+F: doc/guides/prog_guide/eventdev/event_crypto_adapter.rst
 
 Eventdev DMA Adapter API
 M: Amit Prakash Shukla <amitprakashs@marvell.com>
 T: git://dpdk.org/next/dpdk-next-eventdev
 F: lib/eventdev/*dma_adapter*
 F: app/test/test_event_dma_adapter.c
-F: doc/guides/prog_guide/event_dma_adapter.rst
+F: doc/guides/prog_guide/eventdev/event_dma_adapter.rst
 
 Raw device API
 M: Sachin Saxena <sachin.saxena@oss.nxp.com>
@@ -1586,7 +1586,7 @@ F: doc/guides/sample_app_ug/packet_ordering.rst
 Hierarchical scheduler
 M: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
 F: lib/sched/
-F: doc/guides/prog_guide/qos_framework.rst
+F: doc/guides/prog_guide/ethdev/qos_framework.rst
 F: app/test/test_pie.c
 F: app/test/test_red.c
 F: app/test/test_sched.c
@@ -1757,7 +1757,7 @@ Dispatcher - EXPERIMENTAL
 M: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
 F: lib/dispatcher/
 F: app/test/test_dispatcher.c
-F: doc/guides/prog_guide/dispatcher_lib.rst
+F: doc/guides/prog_guide/eventdev/dispatcher_lib.rst
 
 Job statistics
 F: lib/jobstats/
-- 
2.46.0


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

* Re: [PATCH] maintainers: fix prog guide paths
  2024-09-25 21:22 [PATCH] maintainers: fix prog guide paths Thomas Monjalon
@ 2024-09-26  2:00 ` fengchengwen
  2024-09-28 18:35 ` Stephen Hemminger
  1 sibling, 0 replies; 4+ messages in thread
From: fengchengwen @ 2024-09-26  2:00 UTC (permalink / raw)
  To: Thomas Monjalon, dev; +Cc: David Young

Acked-by: Chengwen Feng <fengchengwen@huawei.com>

On 2024/9/26 5:22, Thomas Monjalon wrote:
> When moving some files in doc subdirectories for ethdev and eventdev,
> the references in the file MAINTAINERS were forgotten.
> The new paths are used in this fix.
> 
> Fixes: 41dd9a6bc2d9 ("doc: reorganize prog guide")
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>


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

* Re: [PATCH] maintainers: fix prog guide paths
  2024-09-25 21:22 [PATCH] maintainers: fix prog guide paths Thomas Monjalon
  2024-09-26  2:00 ` fengchengwen
@ 2024-09-28 18:35 ` Stephen Hemminger
  2024-09-28 19:52   ` Thomas Monjalon
  1 sibling, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2024-09-28 18:35 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, David Young

On Wed, 25 Sep 2024 23:22:33 +0200
Thomas Monjalon <thomas@monjalon.net> wrote:

> When moving some files in doc subdirectories for ethdev and eventdev,
> the references in the file MAINTAINERS were forgotten.
> The new paths are used in this fix.
> 
> Fixes: 41dd9a6bc2d9 ("doc: reorganize prog guide")
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>

Acked-by: Stephen Hemminger <stephen@networkplumber.org>

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

* Re: [PATCH] maintainers: fix prog guide paths
  2024-09-28 18:35 ` Stephen Hemminger
@ 2024-09-28 19:52   ` Thomas Monjalon
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2024-09-28 19:52 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev, David Young

Stephen Hemminger, Sep 28, 2024 at 20:35:
> On Wed, 25 Sep 2024 23:22:33 +0200
> Thomas Monjalon <thomas@monjalon.net> wrote:
>
> > When moving some files in doc subdirectories for ethdev and eventdev,
> > the references in the file MAINTAINERS were forgotten.
> > The new paths are used in this fix.
> > 
> > Fixes: 41dd9a6bc2d9 ("doc: reorganize prog guide")
> > 
> > Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
>
> Acked-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Chengwen Feng <fengchengwen@huawei.com>

Applied

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

end of thread, other threads:[~2024-09-28 19:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-25 21:22 [PATCH] maintainers: fix prog guide paths Thomas Monjalon
2024-09-26  2:00 ` fengchengwen
2024-09-28 18:35 ` Stephen Hemminger
2024-09-28 19:52   ` 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).