forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 16
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-6.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/netdev/net Pull networking fixes from Jakub Kicinski: "Including fixes from bluetooth and netfilter. Current release - regressions: - dsa: sja1105: fix reception from VLAN-unaware bridges - Revert "net: stmmac: set PP_FLAG_DMA_SYNC_DEV only if XDP is enabled" - eth: fec: don't save PTP state if PTP is unsupported Current release - new code bugs: - smc: fix lack of icsk_syn_mss with IPPROTO_SMC, prevent null-deref - eth: airoha: update Tx CPU DMA ring idx at the end of xmit loop - phy: aquantia: AQR115c fix up PMA capabilities Previous releases - regressions: - tcp: 3 fixes for retrans_stamp and undo logic Previous releases - always broken: - net: do not delay dst_entries_add() in dst_release() - netfilter: restrict xtables extensions to families that are safe, syzbot found a way to combine ebtables with extensions that are never used by userspace tools - sctp: ensure sk_state is set to CLOSED if hashing fails in sctp_listen_start - mptcp: handle consistently DSS corruption, and prevent corruption due to large pmtu xmit" * tag 'net-6.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (87 commits) MAINTAINERS: Add headers and mailing list to UDP section MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] slip: make slhc_remember() more robust against malicious packets net/smc: fix lacks of icsk_syn_mss with IPPROTO_SMC ppp: fix ppp_async_encode() illegal access docs: netdev: document guidance on cleanup patches phonet: Handle error of rtnl_register_module(). mpls: Handle error of rtnl_register_module(). mctp: Handle error of rtnl_register_module(). bridge: Handle error of rtnl_register_module(). vxlan: Handle error of rtnl_register_module(). rtnetlink: Add bulk registration helpers for rtnetlink message handlers. net: do not delay dst_entries_add() in dst_release() mptcp: pm: do not remove closing subflows mptcp: fallback when MPTCP opts are dropped after 1st data tcp: fix mptcp DSS corruption due to large pmtu xmit mptcp: handle consistently DSS corruption net: netconsole: fix wrong warning net: dsa: refuse cross-chip mirroring operations net: fec: don't save PTP state if PTP is unsupported ...
- Loading branch information
Showing
115 changed files
with
1,339 additions
and
488 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
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 |
---|---|---|
|
@@ -10270,7 +10270,7 @@ F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml | |
F: drivers/bus/hisi_lpc.c | ||
|
||
HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3) | ||
M: Yisen Zhuang <yisen.zhuang@huawei.com> | ||
M: Jian Shen <shenjian15@huawei.com> | ||
M: Salil Mehta <[email protected]> | ||
M: Jijie Shao <[email protected]> | ||
L: [email protected] | ||
|
@@ -10279,7 +10279,7 @@ W: http://www.hisilicon.com | |
F: drivers/net/ethernet/hisilicon/hns3/ | ||
|
||
HISILICON NETWORK SUBSYSTEM DRIVER | ||
M: Yisen Zhuang <yisen.zhuang@huawei.com> | ||
M: Jian Shen <shenjian15@huawei.com> | ||
M: Salil Mehta <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
|
@@ -16201,8 +16201,19 @@ F: lib/random32.c | |
F: net/ | ||
F: tools/net/ | ||
F: tools/testing/selftests/net/ | ||
X: Documentation/networking/mac80211-injection.rst | ||
X: Documentation/networking/mac80211_hwsim/ | ||
X: Documentation/networking/regulatory.rst | ||
X: include/net/cfg80211.h | ||
X: include/net/ieee80211_radiotap.h | ||
X: include/net/iw_handler.h | ||
X: include/net/mac80211.h | ||
X: include/net/wext.h | ||
X: net/9p/ | ||
X: net/bluetooth/ | ||
X: net/mac80211/ | ||
X: net/rfkill/ | ||
X: net/wireless/ | ||
|
||
NETWORKING [IPSEC] | ||
M: Steffen Klassert <[email protected]> | ||
|
@@ -24177,8 +24188,12 @@ F: drivers/usb/host/xhci* | |
|
||
USER DATAGRAM PROTOCOL (UDP) | ||
M: Willem de Bruijn <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: include/linux/udp.h | ||
F: include/net/udp.h | ||
F: include/trace/events/udp.h | ||
F: include/uapi/linux/udp.h | ||
F: net/ipv4/udp.c | ||
F: net/ipv6/udp.c | ||
|
||
|
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
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
Oops, something went wrong.