* [PATCH net-next] r8169: don't apply UDP padding quirk on RTL8126A
@ 2024-10-09 5:44 Heiner Kallweit
2024-10-09 13:19 ` Simon Horman
2024-10-11 1:50 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Heiner Kallweit @ 2024-10-09 5:44 UTC (permalink / raw)
To: Realtek linux nic maintainers, Jakub Kicinski, Paolo Abeni,
Eric Dumazet, David Miller
Cc: netdev@vger.kernel.org
Vendor drivers r8125/r8126 indicate that this quirk isn't needed
any longer for RTL8126A. Mimic this in r8169.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
drivers/net/ethernet/realtek/r8169_main.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c
index 6a9259d85..6789c1c78 100644
--- a/drivers/net/ethernet/realtek/r8169_main.c
+++ b/drivers/net/ethernet/realtek/r8169_main.c
@@ -4234,8 +4234,8 @@ static unsigned int rtl8125_quirk_udp_padto(struct rtl8169_private *tp,
{
unsigned int padto = 0, len = skb->len;
- if (rtl_is_8125(tp) && len < 128 + RTL_MIN_PATCH_LEN &&
- rtl_skb_is_udp(skb) && skb_transport_header_was_set(skb)) {
+ if (len < 128 + RTL_MIN_PATCH_LEN && rtl_skb_is_udp(skb) &&
+ skb_transport_header_was_set(skb)) {
unsigned int trans_data_len = skb_tail_pointer(skb) -
skb_transport_header(skb);
@@ -4259,9 +4259,15 @@ static unsigned int rtl8125_quirk_udp_padto(struct rtl8169_private *tp,
static unsigned int rtl_quirk_packet_padto(struct rtl8169_private *tp,
struct sk_buff *skb)
{
- unsigned int padto;
+ unsigned int padto = 0;
- padto = rtl8125_quirk_udp_padto(tp, skb);
+ switch (tp->mac_version) {
+ case RTL_GIGA_MAC_VER_61 ... RTL_GIGA_MAC_VER_63:
+ padto = rtl8125_quirk_udp_padto(tp, skb);
+ break;
+ default:
+ break;
+ }
switch (tp->mac_version) {
case RTL_GIGA_MAC_VER_34:
--
2.47.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH net-next] r8169: don't apply UDP padding quirk on RTL8126A
2024-10-09 5:44 [PATCH net-next] r8169: don't apply UDP padding quirk on RTL8126A Heiner Kallweit
@ 2024-10-09 13:19 ` Simon Horman
2024-10-11 1:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2024-10-09 13:19 UTC (permalink / raw)
To: Heiner Kallweit
Cc: Realtek linux nic maintainers, Jakub Kicinski, Paolo Abeni,
Eric Dumazet, David Miller, netdev@vger.kernel.org
On Wed, Oct 09, 2024 at 07:44:23AM +0200, Heiner Kallweit wrote:
> Vendor drivers r8125/r8126 indicate that this quirk isn't needed
> any longer for RTL8126A. Mimic this in r8169.
>
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
...
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] r8169: don't apply UDP padding quirk on RTL8126A
2024-10-09 5:44 [PATCH net-next] r8169: don't apply UDP padding quirk on RTL8126A Heiner Kallweit
2024-10-09 13:19 ` Simon Horman
@ 2024-10-11 1:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-10-11 1:50 UTC (permalink / raw)
To: Heiner Kallweit; +Cc: nic_swsd, kuba, pabeni, edumazet, davem, netdev
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 9 Oct 2024 07:44:23 +0200 you wrote:
> Vendor drivers r8125/r8126 indicate that this quirk isn't needed
> any longer for RTL8126A. Mimic this in r8169.
>
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
> ---
> drivers/net/ethernet/realtek/r8169_main.c | 14 ++++++++++----
> 1 file changed, 10 insertions(+), 4 deletions(-)
Here is the summary with links:
- [net-next] r8169: don't apply UDP padding quirk on RTL8126A
https://git.kernel.org/netdev/net-next/c/87e26448dbda
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-11 1:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-09 5:44 [PATCH net-next] r8169: don't apply UDP padding quirk on RTL8126A Heiner Kallweit
2024-10-09 13:19 ` Simon Horman
2024-10-11 1:50 ` patchwork-bot+netdevbpf
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).