All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mvneta driver XDP fixes armhf
@ 2020-01-22 10:05 Sven Auhagen
  2020-01-22 22:57 ` lorenzo.bianconi
  0 siblings, 1 reply; 8+ messages in thread
From: Sven Auhagen @ 2020-01-22 10:05 UTC (permalink / raw)
  To: netdev
  Cc: lorenzo.bianconi, davem, thomas.petazzoni, brouer,
	ilias.apalodimas, matteo.croce, mw, jakub.kicinski

Recently XDP Support was added to the mvneta driver for software buffer management.
I tested XDP with my armada 388 board. It has hardware buffer management defined in the device tree file.
I disabled the mvneta_bm module to test XDP.

I found multiple problems.

1. With hardware buffer management enabled and mvneta_bm disabled the rx_offset was set to 0 with armhf (32 bit) which leads to no headroom in XDP and therefore the XDP Redirect did not work.
2. Removing the hardware buffer management from the device tree file completely made the mvneta driver unusable as it did not work anymore.

After some debugging I found out that xdp->data = data + pp->rx_offset_correction + MVNETA_MH_SIZE;  has to be xdp->data = data + pp->rx_offset_correction; if pp->rx_offset_correction > 0.
I am not sure why and I am looking for help if someone is seeing the same on an arm64 board.

Attached is a patch that fixes the problem on my armhf platform, as said I am not sure if this is a universal fix or armhf only.

Any feedback is appreciated.

Signed-off-by: Sven Auhagen <sven.auhagen@voleatech.de>

--- a/drivers/net/ethernet/marvell/mvneta.c2020-01-22 08:44:05.611395960 +0000
+++ b/drivers/net/ethernet/marvell/mvneta.c2020-01-22 08:59:27.053739433 +0000
@@ -2158,7 +2158,7 @@ mvneta_swbm_rx_frame(struct mvneta_port
 prefetch(data);

 xdp->data_hard_start = data;
-xdp->data = data + pp->rx_offset_correction + MVNETA_MH_SIZE;
+xdp->data = data + pp->rx_offset_correction;
 xdp->data_end = xdp->data + data_len;
 xdp_set_data_meta_invalid(xdp);

@@ -4960,7 +4960,8 @@ static int mvneta_probe(struct platform_
  * NET_SKB_PAD, exceeds 64B. It should be 64B for 64-bit
  * platforms and 0B for 32-bit ones.
  */
-pp->rx_offset_correction = max(0,
+if (pp->bm_priv)
+pp->rx_offset_correction = max(0,
        NET_SKB_PAD -
        MVNETA_RX_PKT_OFFSET_CORRECTION);
 }




+++ Voleatech auf der E-World, 11. bis 13. Februar 2020, Halle 5, Stand 521 +++

Beste Grüße/Best regards

Sven Auhagen
Dipl. Math. oec., M.Sc.
Voleatech GmbH
HRB: B 754643
USTID: DE303643180
Grathwohlstr. 5
72762 Reutlingen
Tel: +49 7121539550
Fax: +49 7121539551
E-Mail: sven.auhagen@voleatech.de
www.voleatech.de<https://www.voleatech.de>
Diese Information ist ausschließlich für den Adressaten bestimmt und kann vertraulich oder gesetzlich geschützte Informationen enthalten. Wenn Sie nicht der bestimmungsgemäße Adressat sind, unterrichten Sie bitte den Absender und vernichten Sie diese Mail. Anderen als dem bestimmungsgemäßen Adressaten ist es untersagt, diese E-Mail zu lesen, zu speichern, weiterzuleiten oder ihren Inhalt auf welche Weise auch immer zu verwenden. Für den Adressaten sind die Informationen in dieser Mail nur zum persönlichen Gebrauch. Eine Weiterleitung darf nur nach Rücksprache mit dem Absender erfolgen. Wir verwenden aktuelle Virenschutzprogramme. Für Schäden, die dem Empfänger gleichwohl durch von uns zugesandte mit Viren befallene E-Mails entstehen, schließen wir jede Haftung aus.

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

end of thread, other threads:[~2020-01-27  9:56 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-22 10:05 [PATCH] mvneta driver XDP fixes armhf Sven Auhagen
2020-01-22 22:57 ` lorenzo.bianconi
2020-01-24 12:03   ` Sven Auhagen
2020-01-25 11:11     ` Sven Auhagen
2020-01-25 16:30       ` Lorenzo Bianconi
2020-01-27  9:04         ` Sven Auhagen
2020-01-27  9:37           ` Lorenzo Bianconi
2020-01-27  9:56             ` Sven Auhagen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.