Merge branch 'r8169-irq-coalesce'
authorDavid S. Miller <davem@davemloft.net>
Sat, 3 Dec 2022 21:49:23 +0000 (21:49 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 3 Dec 2022 21:49:23 +0000 (21:49 +0000)
commit32163491c0c205ffb1596baf9c308dee5338ae94
treef57cc1bfc2ee3dcf4b695af928af8918af28415d
parent65e6af6cebefbf7d8d8ac52b71cd251c2071ad00
parent42f66a44d83715bef810a543dfd66008b883a7a5
Merge branch 'r8169-irq-coalesce'

Heiner Kallweit says:

====================
net: add and use netdev_sw_irq_coalesce_default_on()

There are reports about r8169 not reaching full line speed on certain
systems (e.g. SBC's) with a 2.5Gbps link.
There was a time when hardware interrupt coalescing was enabled per
default, but this was changed due to ASPM-related issues on few systems.

Meanwhile we have sysfs attributes for controlling kind of
"software interrupt coalescing" on the GRO level. However most distros
and users don't know about it. So lets set a conservative default for
both involved parameters. Users can still override the defaults via
sysfs. Don't enable these settings on the fast ethernet chip versions,
they are slow enough.

Even with these conservative setting interrupt load on my 1Gbps test
system reduced significantly.

Follow Jakub's suggestion and put this functionality into net core
so that other MAC drivers can reuse it.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>