netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/2] dpaa_eth documentation updates
@ 2019-11-11 12:03 Madalin Bucur
  2019-11-11 12:03 ` [PATCH net-next 1/2] Documentation: networking: dpaa_eth: adjust buffer pool info Madalin Bucur
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Madalin Bucur @ 2019-11-11 12:03 UTC (permalink / raw)
  To: davem, netdev; +Cc: linux-doc, corbet, Madalin Bucur

Documentation updates for the DPAA Ethernet driver

Madalin Bucur (2):
  Documentation: networking: dpaa_eth: adjust buffer pool info
  Documentation: networking: dpaa_eth: adjust sysfs paths

 Documentation/networking/device_drivers/freescale/dpaa.txt | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

-- 
2.1.0


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

* [PATCH net-next 1/2] Documentation: networking: dpaa_eth: adjust buffer pool info
  2019-11-11 12:03 [PATCH net-next 0/2] dpaa_eth documentation updates Madalin Bucur
@ 2019-11-11 12:03 ` Madalin Bucur
  2019-11-11 12:03 ` [PATCH net-next 2/2] Documentation: networking: dpaa_eth: adjust sysfs paths Madalin Bucur
  2019-11-12  6:03 ` [PATCH net-next 0/2] dpaa_eth documentation updates David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Madalin Bucur @ 2019-11-11 12:03 UTC (permalink / raw)
  To: davem, netdev; +Cc: linux-doc, corbet, Madalin Bucur

Recent changes in the dpaa_eth driver reduced the number of
buffer pools per interface from three to one.

Signed-off-by: Madalin Bucur <madalin.bucur@nxp.com>
---
 Documentation/networking/device_drivers/freescale/dpaa.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/networking/device_drivers/freescale/dpaa.txt b/Documentation/networking/device_drivers/freescale/dpaa.txt
index f88194f71c54..ad1044292073 100644
--- a/Documentation/networking/device_drivers/freescale/dpaa.txt
+++ b/Documentation/networking/device_drivers/freescale/dpaa.txt
@@ -129,9 +129,9 @@ CONFIG_AQUANTIA_PHY=y
 DPAA Ethernet Frame Processing
 ==============================
 
-On Rx, buffers for the incoming frames are retrieved from one of the three
-existing buffers pools. The driver initializes and seeds these, each with
-buffers of different sizes: 1KB, 2KB and 4KB.
+On Rx, buffers for the incoming frames are retrieved from the buffers found
+in the dedicated interface buffer pool. The driver initializes and seeds these
+with one page buffers.
 
 On Tx, all transmitted frames are returned to the driver through Tx
 confirmation frame queues. The driver is then responsible for freeing the
@@ -256,5 +256,5 @@ The driver also exports the following information in sysfs:
 	- the FQ IDs for each FQ type
 	/sys/devices/platform/dpaa-ethernet.0/net/<int>/fqids
 
-	- the IDs of the buffer pools in use
+	- the ID of the buffer pool in use
 	/sys/devices/platform/dpaa-ethernet.0/net/<int>/bpids
-- 
2.1.0


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

* [PATCH net-next 2/2] Documentation: networking: dpaa_eth: adjust sysfs paths
  2019-11-11 12:03 [PATCH net-next 0/2] dpaa_eth documentation updates Madalin Bucur
  2019-11-11 12:03 ` [PATCH net-next 1/2] Documentation: networking: dpaa_eth: adjust buffer pool info Madalin Bucur
@ 2019-11-11 12:03 ` Madalin Bucur
  2019-11-12  6:03 ` [PATCH net-next 0/2] dpaa_eth documentation updates David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Madalin Bucur @ 2019-11-11 12:03 UTC (permalink / raw)
  To: davem, netdev; +Cc: linux-doc, corbet, Madalin Bucur

The sysfs paths changed, updating to the current ones.

Signed-off-by: Madalin Bucur <madalin.bucur@nxp.com>
---
 Documentation/networking/device_drivers/freescale/dpaa.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/networking/device_drivers/freescale/dpaa.txt b/Documentation/networking/device_drivers/freescale/dpaa.txt
index ad1044292073..b06601ff9200 100644
--- a/Documentation/networking/device_drivers/freescale/dpaa.txt
+++ b/Documentation/networking/device_drivers/freescale/dpaa.txt
@@ -254,7 +254,7 @@ The following statistics are exported for each interface through ethtool:
 The driver also exports the following information in sysfs:
 
 	- the FQ IDs for each FQ type
-	/sys/devices/platform/dpaa-ethernet.0/net/<int>/fqids
+	/sys/devices/platform/soc/<addr>.fman/<addr>.ethernet/dpaa-ethernet.<id>/net/fm<nr>-mac<nr>/fqids
 
 	- the ID of the buffer pool in use
-	/sys/devices/platform/dpaa-ethernet.0/net/<int>/bpids
+	/sys/devices/platform/soc/<addr>.fman/<addr>.ethernet/dpaa-ethernet.<id>/net/fm<nr>-mac<nr>/bpids
-- 
2.1.0


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

* Re: [PATCH net-next 0/2] dpaa_eth documentation updates
  2019-11-11 12:03 [PATCH net-next 0/2] dpaa_eth documentation updates Madalin Bucur
  2019-11-11 12:03 ` [PATCH net-next 1/2] Documentation: networking: dpaa_eth: adjust buffer pool info Madalin Bucur
  2019-11-11 12:03 ` [PATCH net-next 2/2] Documentation: networking: dpaa_eth: adjust sysfs paths Madalin Bucur
@ 2019-11-12  6:03 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2019-11-12  6:03 UTC (permalink / raw)
  To: madalin.bucur; +Cc: netdev, linux-doc, corbet

From: Madalin Bucur <madalin.bucur@nxp.com>
Date: Mon, 11 Nov 2019 14:03:10 +0200

> Documentation updates for the DPAA Ethernet driver

Series applied to net-next.


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

end of thread, other threads:[~2019-11-12  6:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-11 12:03 [PATCH net-next 0/2] dpaa_eth documentation updates Madalin Bucur
2019-11-11 12:03 ` [PATCH net-next 1/2] Documentation: networking: dpaa_eth: adjust buffer pool info Madalin Bucur
2019-11-11 12:03 ` [PATCH net-next 2/2] Documentation: networking: dpaa_eth: adjust sysfs paths Madalin Bucur
2019-11-12  6:03 ` [PATCH net-next 0/2] dpaa_eth documentation updates David Miller

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