diff mbox series

[1/3,(RESENT)] net: usb: ax88179_178a: Enable FLAG_MULTI_PACKET to improve tx stability

Message ID ME3P282MB28276594FEE8942909123B30D1269@ME3P282MB2827.AUSP282.PROD.OUTLOOK.COM (mailing list archive)
State New, archived
Headers show
Series [1/3,(RESENT)] net: usb: ax88179_178a: Enable FLAG_MULTI_PACKET to improve tx stability | expand

Commit Message

Yen Chun-Chao Oct. 16, 2022, 11:36 a.m. UTC
Problem Description:
The current way of handling the boundary case in tx, i.e. adding one-byte
padding when the size of an outbound packet is a multiple of the maximum
frame size used for USB bulk transfer, does not work with the hardware.
This can be shown by running a loading test via iperf with this hardware as
the sender; one can then tune the iperf parameters on the sender side (e.g.
"-M 510" in my testing environment) so that sent packets frequently hit the
boundary condition, and observe a significant drop in the transmission
rate. In the worst case (often after a long run), the hardware can stop
functioning (can not send or receive packets anymore, albeit the
corresponding network interface is still reported present by ifconfig).

It is also believed that this problem is highly relevant to this bug [1].

Solution:
Enable FLAG_MULTI_PACKET and modify both ax88179_rx_fixup() and
ax88179_tx_fixup() accordingly.

Rationale:
When FLAG_MULTI_PACKET is enabled (and FLAG_SEND_ZLP is off, which is the
case for this driver), usbnet will skip padding, and trust that each
sk_buff returned from the mini-driver's tx_fixup function has been taken
care of to cater for the requirement of its target hardware. That
mechanism allows this mini-driver to send, even when the boundary condition
is detected, "untampered" packets (no padding, no extra flags, as if in the
normal case) that the hardware accepts, and therefore resolves this
problem.

Note that rather than being viewed as a workaround, enabling
FLAG_MULTI_PACKET is intended to better match the overall behaviour of the
hardware, as it also echos well the rx procedure conducting multiple-packet
extraction from a single sk_buff in ax88179_rx_fixup().

Verification:
Only tested with this device:
0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet

References:
[1] https://bugzilla.kernel.org/show_bug.cgi?id=212731

Signed-off-by: Chun-Chao Yen <nothingstopsme@hotmail.com>
---
 drivers/net/usb/ax88179_178a.c | 62 ++++++++++++++--------------------
 1 file changed, 26 insertions(+), 36 deletions(-)

Comments

Greg Kroah-Hartman Oct. 16, 2022, 11:48 a.m. UTC | #1
On Sun, Oct 16, 2022 at 07:36:25PM +0800, Chun-Chao Yen wrote:
> Problem Description:
> The current way of handling the boundary case in tx, i.e. adding one-byte
> padding when the size of an outbound packet is a multiple of the maximum
> frame size used for USB bulk transfer, does not work with the hardware.
> This can be shown by running a loading test via iperf with this hardware as
> the sender; one can then tune the iperf parameters on the sender side (e.g.
> "-M 510" in my testing environment) so that sent packets frequently hit the
> boundary condition, and observe a significant drop in the transmission
> rate. In the worst case (often after a long run), the hardware can stop
> functioning (can not send or receive packets anymore, albeit the
> corresponding network interface is still reported present by ifconfig).
> 
> It is also believed that this problem is highly relevant to this bug [1].
> 
> Solution:
> Enable FLAG_MULTI_PACKET and modify both ax88179_rx_fixup() and
> ax88179_tx_fixup() accordingly.
> 
> Rationale:
> When FLAG_MULTI_PACKET is enabled (and FLAG_SEND_ZLP is off, which is the
> case for this driver), usbnet will skip padding, and trust that each
> sk_buff returned from the mini-driver's tx_fixup function has been taken
> care of to cater for the requirement of its target hardware. That
> mechanism allows this mini-driver to send, even when the boundary condition
> is detected, "untampered" packets (no padding, no extra flags, as if in the
> normal case) that the hardware accepts, and therefore resolves this
> problem.
> 
> Note that rather than being viewed as a workaround, enabling
> FLAG_MULTI_PACKET is intended to better match the overall behaviour of the
> hardware, as it also echos well the rx procedure conducting multiple-packet
> extraction from a single sk_buff in ax88179_rx_fixup().
> 
> Verification:
> Only tested with this device:
> 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet
> 
> References:
> [1] https://bugzilla.kernel.org/show_bug.cgi?id=212731
> 
> Signed-off-by: Chun-Chao Yen <nothingstopsme@hotmail.com>
> ---
>  drivers/net/usb/ax88179_178a.c | 62 ++++++++++++++--------------------
>  1 file changed, 26 insertions(+), 36 deletions(-)

Why is this a RESEND?

Always put below the --- what is happening, what is different from the
first version you sent?

And why is this not threaded with the 2/3 and 3/3 patches?

thanks,

greg k-h
Yen Chun-Chao Oct. 17, 2022, 11:23 a.m. UTC | #2
>On Sun, Oct 16, 2022 at 07:36:25PM +0800, Chun-Chao Yen wrote:
>> Problem Description:
>> The current way of handling the boundary case in tx, i.e. adding one-byte
>> padding when the size of an outbound packet is a multiple of the maximum
>> frame size used for USB bulk transfer, does not work with the hardware.
>> This can be shown by running a loading test via iperf with this hardware as
>> the sender; one can then tune the iperf parameters on the sender side (e.g.
>> "-M 510" in my testing environment) so that sent packets frequently hit the
>> boundary condition, and observe a significant drop in the transmission
>> rate. In the worst case (often after a long run), the hardware can stop
>> functioning (can not send or receive packets anymore, albeit the
>> corresponding network interface is still reported present by ifconfig).
>>
>> It is also believed that this problem is highly relevant to this bug [1].
>>
>> Solution:
>> Enable FLAG_MULTI_PACKET and modify both ax88179_rx_fixup() and
>> ax88179_tx_fixup() accordingly.
>>
>> Rationale:
>> When FLAG_MULTI_PACKET is enabled (and FLAG_SEND_ZLP is off, which is the
>> case for this driver), usbnet will skip padding, and trust that each
>> sk_buff returned from the mini-driver's tx_fixup function has been taken
>> care of to cater for the requirement of its target hardware. That
>> mechanism allows this mini-driver to send, even when the boundary condition
>> is detected, "untampered" packets (no padding, no extra flags, as if in the
>> normal case) that the hardware accepts, and therefore resolves this
>> problem.
>>
>> Note that rather than being viewed as a workaround, enabling
>> FLAG_MULTI_PACKET is intended to better match the overall behaviour of the
>> hardware, as it also echos well the rx procedure conducting multiple-packet
>> extraction from a single sk_buff in ax88179_rx_fixup().
>>
>> Verification:
>> Only tested with this device:
>> 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet
>>
>> References:
>> [1] https://bugzilla.kernel.org/show_bug.cgi?id=212731
>>
>> Signed-off-by: Chun-Chao Yen <nothingstopsme@hotmail.com>
>> ---
>>  drivers/net/usb/ax88179_178a.c | 62 ++++++++++++++--------------------
>>  1 file changed, 26 insertions(+), 36 deletions(-)
>
>Why is this a RESEND?

Hi, sorry for the confusion. "RESEND" (by the way, the actual tag
"RESENT" is used as "re-sent", with no intention to imply anger) simply 
means, the exact same patches are sent out again. 

Since I have not received any acknowledgements or feedback yet for the 
first 3 patches sent on Oct 7, and the guideline says sometimes mails 
could be lost and we might resubmit them after a minimum of one week;
so for that reason I tagged the same mails with "RESENT" (a bad choice 
of tag in hindsight) and sent them out again (also switched to a different 
maintainer's address to mail to).

>
>Always put below the --- what is happening, what is different from the
>first version you sent?

Sure, I will put my "re-sent" message there for similar cases in future.

>
>And why is this not threaded with the 2/3 and 3/3 patches?

All 3 patches tagged with "RESENT" were sent at the same time, so I 
guess the other two are probably lost. Sorry again for the confusion/mess 
I have made.

>
>thanks,
>
>greg k-h

I think your reply shows that my first 3 patches (sent on Oct 7) have 
successfully reached the kernel team and entered your processing queue; 
therefore please ignore the later ones tagged with "RESENT" (sent on 
Oct 16), and inform me of anything I need to know for this review.

Many thanks and apologies,

Chao
diff mbox series

Patch

diff --git a/drivers/net/usb/ax88179_178a.c b/drivers/net/usb/ax88179_178a.c
index aff39bf3161d..b50748b3776c 100644
--- a/drivers/net/usb/ax88179_178a.c
+++ b/drivers/net/usb/ax88179_178a.c
@@ -1426,58 +1426,48 @@  static int ax88179_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
 		if ((*pkt_hdr & (AX_RXHDR_CRC_ERR | AX_RXHDR_DROP_ERR)) ||
 		    pkt_len < 2 + ETH_HLEN) {
 			dev->net->stats.rx_errors++;
-			skb_pull(skb, pkt_len_plus_padd);
-			continue;
-		}
-
-		/* last packet */
-		if (pkt_len_plus_padd == skb->len) {
-			skb_trim(skb, pkt_len);
-
-			/* Skip IP alignment pseudo header */
-			skb_pull(skb, 2);
-
-			skb->truesize = SKB_TRUESIZE(pkt_len_plus_padd);
-			ax88179_rx_checksum(skb, pkt_hdr);
-			return 1;
+			goto advance_data_ptr;
 		}
 
 		ax_skb = skb_clone(skb, GFP_ATOMIC);
-		if (!ax_skb)
-			return 0;
+		if (!ax_skb) {
+			/* Report a packet droped, and continue parsing the rest
+			 */
+			dev->net->stats.rx_dropped++;
+			goto advance_data_ptr;
+		}
 		skb_trim(ax_skb, pkt_len);
 
 		/* Skip IP alignment pseudo header */
 		skb_pull(ax_skb, 2);
 
-		skb->truesize = pkt_len_plus_padd +
-				SKB_DATA_ALIGN(sizeof(struct sk_buff));
+		ax_skb->truesize = SKB_TRUESIZE(pkt_len);
 		ax88179_rx_checksum(ax_skb, pkt_hdr);
 		usbnet_skb_return(dev, ax_skb);
 
+advance_data_ptr:
 		skb_pull(skb, pkt_len_plus_padd);
 	}
 
-	return 0;
+	return 1;
 }
 
 static struct sk_buff *
 ax88179_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags)
 {
 	u32 tx_hdr1, tx_hdr2;
-	int frame_size = dev->maxpacket;
 	int headroom;
 	void *ptr;
 
 	tx_hdr1 = skb->len;
 	tx_hdr2 = skb_shinfo(skb)->gso_size; /* Set TSO mss */
-	if (((skb->len + 8) % frame_size) == 0)
-		tx_hdr2 |= 0x80008000;	/* Enable padding */
 
 	headroom = skb_headroom(skb) - 8;
 
-	if ((dev->net->features & NETIF_F_SG) && skb_linearize(skb))
+	if ((dev->net->features & NETIF_F_SG) && skb_linearize(skb)) {
+		dev_kfree_skb_any(skb);
 		return NULL;
+	}
 
 	if ((skb_header_cloned(skb) || headroom < 0) &&
 	    pskb_expand_head(skb, headroom < 0 ? 8 : 0, 0, GFP_ATOMIC)) {
@@ -1680,7 +1670,7 @@  static const struct driver_info ax88179_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1693,7 +1683,7 @@  static const struct driver_info ax88178a_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1706,7 +1696,7 @@  static const struct driver_info cypress_GX3_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1719,7 +1709,7 @@  static const struct driver_info dlink_dub1312_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1732,7 +1722,7 @@  static const struct driver_info sitecom_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1745,7 +1735,7 @@  static const struct driver_info samsung_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1758,7 +1748,7 @@  static const struct driver_info lenovo_info = {
 	.link_reset = ax88179_link_reset,
 	.reset = ax88179_reset,
 	.stop = ax88179_stop,
-	.flags = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1771,7 +1761,7 @@  static const struct driver_info belkin_info = {
 	.link_reset = ax88179_link_reset,
 	.reset	= ax88179_reset,
 	.stop	= ax88179_stop,
-	.flags	= FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags	= FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1784,7 +1774,7 @@  static const struct driver_info toshiba_info = {
 	.link_reset = ax88179_link_reset,
 	.reset	= ax88179_reset,
 	.stop = ax88179_stop,
-	.flags	= FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags	= FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1797,7 +1787,7 @@  static const struct driver_info mct_info = {
 	.link_reset = ax88179_link_reset,
 	.reset	= ax88179_reset,
 	.stop	= ax88179_stop,
-	.flags	= FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags	= FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1810,7 +1800,7 @@  static const struct driver_info at_umc2000_info = {
 	.link_reset = ax88179_link_reset,
 	.reset  = ax88179_reset,
 	.stop   = ax88179_stop,
-	.flags  = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags  = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1823,7 +1813,7 @@  static const struct driver_info at_umc200_info = {
 	.link_reset = ax88179_link_reset,
 	.reset  = ax88179_reset,
 	.stop   = ax88179_stop,
-	.flags  = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags  = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };
@@ -1836,7 +1826,7 @@  static const struct driver_info at_umc2000sp_info = {
 	.link_reset = ax88179_link_reset,
 	.reset  = ax88179_reset,
 	.stop   = ax88179_stop,
-	.flags  = FLAG_ETHER | FLAG_FRAMING_AX,
+	.flags  = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_MULTI_PACKET,
 	.rx_fixup = ax88179_rx_fixup,
 	.tx_fixup = ax88179_tx_fixup,
 };