forked from alistair23/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'net-5.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/netdev/net Pull networking fixes from Jakub Kicinski: "We have a few fixes for long standing issues, in particular Eric's fix to not underestimate the skb sizes, and my fix for brokenness of register_netdevice() error path. They may uncover other bugs so we will keep an eye on them. Also included are Willem's fixes for kmap(_atomic). Looking at the "current release" fixes, it seems we are about one rc behind a normal cycle. We've previously seen an uptick of "people had run their test suites" / "humans actually tried to use new features" fixes between rc2 and rc3. Summary: Current release - regressions: - fix feature enforcement to allow NETIF_F_HW_TLS_TX if IP_CSUM && IPV6_CSUM - dcb: accept RTM_GETDCB messages carrying set-like DCB commands if user is admin for backward-compatibility - selftests/tls: fix selftests build after adding ChaCha20-Poly1305 Current release - always broken: - ppp: fix refcount underflow on channel unbridge - bnxt_en: clear DEFRAG flag in firmware message when retry flashing - smc: fix out of bound access in the new netlink interface Previous releases - regressions: - fix use-after-free with UDP GRO by frags - mptcp: better msk-level shutdown - rndis_host: set proper input size for OID_GEN_PHYSICAL_MEDIUM request - i40e: xsk: fix potential NULL pointer dereferencing Previous releases - always broken: - skb frag: kmap_atomic fixes - avoid 32 x truesize under-estimation for tiny skbs - fix issues around register_netdevice() failures - udp: prevent reuseport_select_sock from reading uninitialized socks - dsa: unbind all switches from tree when DSA master unbinds - dsa: clear devlink port type before unregistering slave netdevs - can: isotp: isotp_getname(): fix kernel information leak - mlxsw: core: Thermal control fixes - ipv6: validate GSO SKB against MTU before finish IPv6 processing - stmmac: use __napi_schedule() for PREEMPT_RT - net: mvpp2: remove Pause and Asym_Pause support Misc: - remove from MAINTAINERS folks who had been inactive for >5yrs" * tag 'net-5.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (58 commits) mptcp: fix locking in mptcp_disconnect() net: Allow NETIF_F_HW_TLS_TX if IP_CSUM && IPV6_CSUM MAINTAINERS: dccp: move Gerrit Renker to CREDITS MAINTAINERS: ipvs: move Wensong Zhang to CREDITS MAINTAINERS: tls: move Aviad to CREDITS MAINTAINERS: ena: remove Zorik Machulsky from reviewers MAINTAINERS: vrf: move Shrijeet to CREDITS MAINTAINERS: net: move Alexey Kuznetsov to CREDITS MAINTAINERS: altx: move Jay Cliburn to CREDITS net: avoid 32 x truesize under-estimation for tiny skbs nt: usb: USB_RTL8153_ECM should not default to y net: stmmac: fix taprio configuration when base_time is in the past net: stmmac: fix taprio schedule configuration net: tip: fix a couple kernel-doc markups net: sit: unregister_netdevice on newlink's error path net: stmmac: Fixed mtu channged by cache aligned cxgb4/chtls: Fix tid stuck due to wrong update of qid i40e: fix potential NULL pointer dereferencing net: stmmac: use __napi_schedule() for PREEMPT_RT can: mcp251xfd: mcp251xfd_handle_rxif_one(): fix wrong NULL pointer check ...
- Loading branch information
Showing
54 changed files
with
569 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -710,6 +710,10 @@ S: Las Cuevas 2385 - Bo Guemes | |
S: Las Heras, Mendoza CP 5539 | ||
S: Argentina | ||
|
||
N: Jay Cliburn | ||
E: [email protected] | ||
D: ATLX Ethernet drivers | ||
|
||
N: Steven P. Cole | ||
E: [email protected] | ||
E: [email protected] | ||
|
@@ -1284,6 +1288,10 @@ D: Major kbuild rework during the 2.5 cycle | |
D: ISDN Maintainer | ||
S: USA | ||
|
||
N: Gerrit Renker | ||
E: [email protected] | ||
D: DCCP protocol support. | ||
|
||
N: Philip Gladstone | ||
E: [email protected] | ||
D: Kernel / timekeeping stuff | ||
|
@@ -2138,6 +2146,10 @@ E: [email protected] | |
E: [email protected] | ||
D: Original author of software suspend | ||
|
||
N: Alexey Kuznetsov | ||
E: [email protected] | ||
D: Author and maintainer of large parts of the networking stack | ||
|
||
N: Jaroslav Kysela | ||
E: [email protected] | ||
W: https://www.perex.cz | ||
|
@@ -2696,6 +2708,10 @@ N: Wolfgang Muees | |
E: [email protected] | ||
D: Auerswald USB driver | ||
|
||
N: Shrijeet Mukherjee | ||
E: [email protected] | ||
D: Network routing domains (VRF). | ||
|
||
N: Paul Mundt | ||
E: [email protected] | ||
D: SuperH maintainer | ||
|
@@ -4110,6 +4126,10 @@ S: B-1206 Jingmao Guojigongyu | |
S: 16 Baliqiao Nanjie, Beijing 101100 | ||
S: People's Repulic of China | ||
|
||
N: Aviad Yehezkel | ||
E: [email protected] | ||
D: Kernel TLS implementation and offload support. | ||
|
||
N: Victor Yodaiken | ||
E: [email protected] | ||
D: RTLinux (RealTime Linux) | ||
|
@@ -4167,6 +4187,10 @@ S: 1507 145th Place SE #B5 | |
S: Bellevue, Washington 98007 | ||
S: USA | ||
|
||
N: Wensong Zhang | ||
E: [email protected] | ||
D: IP virtual server (IPVS). | ||
|
||
N: Haojian Zhuang | ||
E: [email protected] | ||
D: MMP support | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -820,7 +820,6 @@ M: Netanel Belgazal <[email protected]> | |
M: Arthur Kiyanovski <[email protected]> | ||
R: Guy Tzalik <[email protected]> | ||
R: Saeed Bishara <[email protected]> | ||
R: Zorik Machulsky <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst | ||
|
@@ -2942,7 +2941,6 @@ S: Maintained | |
F: drivers/hwmon/asus_atk0110.c | ||
|
||
ATLX ETHERNET DRIVERS | ||
M: Jay Cliburn <[email protected]> | ||
M: Chris Snook <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
|
@@ -4922,9 +4920,8 @@ F: Documentation/scsi/dc395x.rst | |
F: drivers/scsi/dc395x.* | ||
|
||
DCCP PROTOCOL | ||
M: Gerrit Renker <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
S: Orphan | ||
W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp | ||
F: include/linux/dccp.h | ||
F: include/linux/tfrc.h | ||
|
@@ -9326,7 +9323,6 @@ W: http://www.adaptec.com/ | |
F: drivers/scsi/ips* | ||
|
||
IPVS | ||
M: Wensong Zhang <[email protected]> | ||
M: Simon Horman <[email protected]> | ||
M: Julian Anastasov <[email protected]> | ||
L: [email protected] | ||
|
@@ -12416,7 +12412,6 @@ F: tools/testing/selftests/net/ipsec.c | |
|
||
NETWORKING [IPv4/IPv6] | ||
M: "David S. Miller" <[email protected]> | ||
M: Alexey Kuznetsov <[email protected]> | ||
M: Hideaki YOSHIFUJI <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
|
@@ -12473,7 +12468,6 @@ F: net/ipv6/tcp*.c | |
|
||
NETWORKING [TLS] | ||
M: Boris Pismenny <[email protected]> | ||
M: Aviad Yehezkel <[email protected]> | ||
M: John Fastabend <[email protected]> | ||
M: Daniel Borkmann <[email protected]> | ||
M: Jakub Kicinski <[email protected]> | ||
|
@@ -19071,7 +19065,6 @@ K: regulator_get_optional | |
|
||
VRF | ||
M: David Ahern <[email protected]> | ||
M: Shrijeet Mukherjee <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/networking/vrf.rst | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.