<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>7a0e692a0381254b2f77c54dec100cd3325a6fdf - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#7a0e692a0381254b2f77c54dec100cd3325a6fdf</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.2 merge window.

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Tue, 23 Jun 2026 08:10:08 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9611c0ce215a66770ccbe5c126bf57ba8c31bcad - Merge commit &apos;6beaec3aee9852438b89e4d7891caf5e84d45851&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-current</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#9611c0ce215a66770ccbe5c126bf57ba8c31bcad</link>
        <description>Merge commit &apos;6beaec3aee9852438b89e4d7891caf5e84d45851&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-currentThis pulls in the merge commit for MFD updates for v7.2. The PR containsa build-time dependency of one of the GPIO commits that will follow.

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Fri, 19 Jun 2026 10:50:17 +0200</pubDate>
        <dc:creator>Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>b85966adbf5de0668a815c6e3527f87e0c387fb4 - Merge tag &apos;net-next-7.2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#b85966adbf5de0668a815c6e3527f87e0c387fb4</link>
        <description>Merge tag &apos;net-next-7.2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextPull networking updates from Jakub Kicinski: &quot;Core &amp; protocols:   - Work on removing rtnl_lock protection throughout the stack     continues. In this chapter:       - don&apos;t use rtnl_lock for IPv6 multicast routing configuration       - don&apos;t take rtnl_lock in ethtool for modern drivers       - prepare Qdisc dump callbacks for rtnl_lock removal   - Support dumping just ifindex + name of all interfaces, under RCU.     It&apos;s a common operation for Netlink CLI tools (when translating     names to ifindexes) and previously required full rtnl_lock.   - Support dumping qdiscs and page pools for a specific netdev. Even     tho user space wants a dump of all netdevs, most of the time, the     OOO programming model results in repeating the dump for each     netdev. Which, in absence of a cache, leads to a O(n^2) behavior.   - Flush nexthops once on multi-nexthop removal (e.g. when device goes     down), another O(n^2) -&gt; O(n) improvement.   - Rehash locally generated traffic to a different nexthop on     retransmit timeout.   - Honor oif when choosing nexthop for locally generated IPv6 traffic.   - Convert TCP Auth Option to crypto library, and drop non-RFC algos.   - Increase subflow limits in MPTCP to 64 and endpoint limit to 256.   - Support MPTCP signaling of IPv6 address + port (ADD_ADDR). We need     to selectively skip reporting of the standard TCP Timestamp option,     because they won&apos;t fit into the header space together (12 + 30 &gt;     40).   - Support using bridge neighbor suppression, Duplicate Address     Detection, Gratuitous ARP and unsolicited NA forwarding - in EVPN     deployments, e.g. VXLAN fabrics (IPv4 and IPv6).   - Improve link state reporting for upper netdevs (e.g. macvlan) over     tunnel devices (again, mostly for EVPN deployments).   - Support binding GENEVE tunnels to a local address.   - Speed up UDP tunnel destruction (remove one synchronize_rcu()).   - Support exponential field encoding in multicast (IGMPv3 and MLDv2).   - Support attaching PSP crypto offload to containers (veth, netkit).   - Add a new IPSec Netlink message XFRM_MSG_MIGRATE_STATE that allows     migrating individual IPsec SAs independently of their policies.     The existing XFRM_MSG_MIGRATE is tightly coupled to policy+SA     migration, lacks SPI for unique SA identification, and cannot     express reqid changes or migrate Transport mode selectors.     The new interface identifies the SA via SPI and mark, supports     reqid changes, address family changes, encap removal, and uses an     atomic create+install flow under x-&gt;lock to prevent SN/IV reuse     during AEAD SA migration.   - Implement GRO/GSO support for PPPoE.   - Convert sockopt callbacks in a number of protocols to iov_iter.  Cross-tree stuff:   - Remove support for Crypto TFM cloning (unblocked after the TCP Auth     Option rework). This feature regressed performance for all crypto     API users, since it changed crypto transformation objects into     reference-counted objects.   - Add FCrypt-PCBC implementation to rxrpc and remove it from the     global crypto API as obsolete and insecure.  Wireless:   - Major rework of station bandwidth handling, fixing issues with     lower capability than AP.   - Cleanups for EMLSR spec issues (drafts differed).   - More Neighbor Awareness Networking (Wi-Fi Aware) work (multicast,     schedule improvements, multi-station etc.)   - Some Ultra High Reliability (UHR) / IEEE 802.11bn (D1.4) work     (e.g. non-primary channel access, UHR DBE support).   - Fine Timing Measurement ranging (i.e. distance measurement) APIs.  Netfilter:   - Use per-rule hash initval in nf_conncount. This avoids unnecessary     lock contention with short keys (e.g. conntrack zones) in different     namespaces.   - Various safety improvements, both in packet parsing and object     lifetimes. Notably add refcounts to conntrack timeout policy.  Deletions:   - Remove TLS + sockmap integration. TLS wants to pin user pages to     avoid a copy, and sockmap wants to write to the input stream. More     work on this integration is clearly needed, and we can&apos;t find any     users (original author admitted that they never deployed it).   - Remove support for TLS offload with TCP Offload Engine (the far     more common opportunistic offload is retained). The locking looks     unfixable (driver sleeps under TCP spin locks) and people from the     vendor that added this are AWOL.   - Remove more ATM code, trying to leave behind only what PPPoATM     needs, AAL5 and br2684 with permanent circuits.   - Remove AppleTalk. Let it join hamradio in our out of tree protocol     graveyard, I mean, repository.   - Disable 32-bit x_tables compatibility (32bit binaries on 64bit     kernel) interface in user namespaces. To be deleted completely,     soon.   - Remove 5/10 MHz support from cfg80211/mac80211.  Drivers:   - Software:       - Support DEVMEM/DMABUF Tx over NETMEM_TX_NO_DMA devices (netkit)       - bonding: add knob to strictly follow 802.3ad for link state   - New drivers:       - Alibaba Elastic Ethernet Adaptor (cloud vNIC).       - NXP NETC switch within i.MX94.   - DPLL:       - Add operational state to pins (implement in zl3073x).       - Add generic DPLL type, for daisy-chaining DPLLs (implement in ice).   - Ethernet high-speed NICs:       - Huawei (hinic3):           - enhance tc flow offload support with queue selection,             tunnels       - nVidia/Mellanox:           - avoid over-copying payload to the skb&apos;s linear part (up to             60% win for LRO on slow CPUs like ARM64 V2)           - expose more per-queue stats over the standard API           - support additional, unprivileged PFs in the DPU             configuration           - support Socket Direct (multi-PF) with switchdev offloads           - add a pool / frag allocator for DMA mapped buffers for             control objects, save memory on systems with 64kB page size           - take advantage of the ability to dynamically change RSS             table size, even when table is configured by the user           - increase the max RSS table size for even traffic             distribution   - Ethernet NICs:       - Marvell/Aquantia:           - AQC113 PTP support       - Realtek USB (r8152):           - support 10Gbit Link Speeds and Energy-Efficient Ethernet             (EEE)           - support firmware loaded (for RTL8157/RTL8159)           - support for the RTL8159       - Intel (ixgbe):           - support Energy-Efficient Ethernet (EEE) on E610 devices   - Ethernet switches:       - Airoha:           - support multiple netdevs on a single GDM block / port       - Marvell (mv88e6xxx):           - support SERDES of mv88e6321       - Microchip (ksz8/9):           - rework the driver callbacks to remove one indirection layer       - Motorcomm (yt921x):           - support port rate policing           - support TBF qdisc offload           - support ACL/flower offload       - nVidia/Mellanox:           - expose per-PG rx_discards       - Realtek:           - rtl8365mb: bridge offloading and VLAN support   - Ethernet PHYs:       - Airoha:           - support Airoha AN8801R Gigabit PHYs.       - Micrel:           - implement 3 low-loss cable tunables       - Realtek:           - support MDI swapping for RTL8226-CG           - support MDIO for RTL931x       - Qualcomm:           - at803x: Rx and Tx clock management for IPQ5018 PHY       - Motorcomm:           - support YT8522 100M RMII PHY           - set drive strength in YT8531s RGMII       - TI:           - dp83822: add optional external PHY clock   - Bluetooth:       - hci_sync: add support for HCI_LE_Set_Host_Feature [v2]       - SMP: use AES-CMAC library API       - Intel:           - support Product level reset           - support smart trigger dump       - Mediatek:           - add event filter to filter specific event       - Realtek:           - fix RTL8761B/BU broken LE extended scan   - WiFi:       - Broadcom (b43):           - new support for a 11n device       - MediaTek (mt76):           - support mt7927           - mt792x: broken usb transport detection           - mt7921: regulatory improvements       - Qualcomm (ath9k):           - GPIO interface improvements       - Qualcomm (ath12k):           - WDS support           - replace dynamic memory allocation in WMI Rx path           - thermal throttling/cooling device support           - 6 GHz incumbent interference detection           - channel 177 in 5 GHz       - Realtek (rt89):           - RTL8922AU support           - USB 3 mode switch for performance           - better monitor radiotap support           - RTL8922DE preparations&quot;* tag &apos;net-next-7.2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1778 commits)  ipv4: fib_rule: Move fib4_rules_exit() to -&gt;exit().  net: serialize netif_running() check in enqueue_to_backlog()  net: skmsg: preserve sg.copy across SG transforms  appletalk: move the protocol out of tree  appletalk: stop storing per-interface state in struct net_device  selftests/bpf: test that TLS crypto is rejected on a sockmap socket  selftests/bpf: drop the unused kTLS program from test_sockmap  selftests/bpf: remove sockmap + ktls tests  tls: remove dead sockmap (psock) handling from the SW path  tls: reject the combination of TLS and sockmap  atm: remove orphaned uAPI for deleted drivers, protocols and SVCs  atm: remove unused ATM PHY operations  atm: remove the unused pre_send and send_bh device operations  atm: remove the unused change_qos device operation  atm: remove SVC socket support and the signaling daemon interface  atm: remove the local ATM (NSAP) address registry  atm: remove dead SONET PHY ioctls  atm: remove the unused send_oam / push_oam callbacks  atm: remove AAL3/4 transport support  net: dsa: sja1105: fix lastused timestamp in flower stats  ...

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Wed, 17 Jun 2026 09:17:00 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>aa776949fb77462ee712eee28bc54a9ce95c5b40 - Merge branch &apos;for-7.2/wiimote&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#aa776949fb77462ee712eee28bc54a9ce95c5b40</link>
        <description>Merge branch &apos;for-7.2/wiimote&apos; into for-linus

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Tue, 16 Jun 2026 21:47:16 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>fff88709f9a9153af85b5224b4594caa5387ca60 - Merge tag &apos;v7.1-rc6&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#fff88709f9a9153af85b5224b4594caa5387ca60</link>
        <description>Merge tag &apos;v7.1-rc6&apos; into nextSync up with mainline to pull in a fix to IMS PCU driver and otherenhancements.

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Mon, 01 Jun 2026 04:43:25 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>639609b83f69fe4cd08e01423ae8e12d84484cfa - Merge branch &apos;arena_direct_access&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next into for-7.2</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#639609b83f69fe4cd08e01423ae8e12d84484cfa</link>
        <description>Merge branch &apos;arena_direct_access&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next into for-7.2

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Mon, 25 May 2026 21:34:24 +0200</pubDate>
        <dc:creator>Tejun Heo &lt;tj@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5c8cbca290acdd49a694b36c0af76ba0c00bbf12 - Merge branch &apos;20260507-ubwc-rework-v4-4-c19593d20c1d@oss.qualcomm.com&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#5c8cbca290acdd49a694b36c0af76ba0c00bbf12</link>
        <description>Merge branch &apos;20260507-ubwc-rework-v4-4-c19593d20c1d@oss.qualcomm.com&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into HEADMerge the branch with the soc/qcom changes, required for the next UBWCpatches.Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Thu, 21 May 2026 22:36:50 +0200</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>09d6818d3bdc1ea6e49a425040528cbdbc97bc0a - Merge branch &apos;linus&apos; into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#09d6818d3bdc1ea6e49a425040528cbdbc97bc0a</link>
        <description>Merge branch &apos;linus&apos; into timers/clocksource... to bring it up to date for new changes.

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Mon, 18 May 2026 11:01:07 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>658a6021492ad3b1b8a6e9a83963a1fad35a2af8 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#658a6021492ad3b1b8a6e9a83963a1fad35a2af8</link>
        <description>Merge drm/drm-next into drm-intel-nextSome Display Port Adaptive Sync depends on drm work.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Fri, 15 May 2026 13:01:15 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8edf8b09fc44990977b3fbcb708035b1740d0b7e - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#8edf8b09fc44990977b3fbcb708035b1740d0b7e</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerging to pull in commit 5401b9adebc9 (&quot;i915: don&apos;t usea vma that didn&apos;t match the context VM&quot;) to revert it.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Tue, 12 May 2026 10:16:35 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7e033543a2ab4c72319201298ed458e3bbddd82f - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.1-rc3</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#7e033543a2ab4c72319201298ed458e3bbddd82f</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.1-rc3Cross-merge BPF and other fixes after downstream PR.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Sun, 10 May 2026 22:24:49 +0200</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c53ed3e99920df6a90553c89a1c053aa0776841e - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#c53ed3e99920df6a90553c89a1c053aa0776841e</link>
        <description>Merge drm/drm-next into drm-xe-nextBringing in recent display changes.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Fri, 08 May 2026 16:19:45 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c13581876f2c99f9139c10dcb2d880f3a9a5ed06 - net: mdio: drop unneeded dependency on OF_GPIO</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#c13581876f2c99f9139c10dcb2d880f3a9a5ed06</link>
        <description>net: mdio: drop unneeded dependency on OF_GPIOOF_GPIO is selected automatically on all OF systems. Any symbols itcontrols also provide stubs so there&apos;s really no reason to select itexplicitly.Signed-off-by: Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;Link: https://patch.msgid.link/20260428093338.35043-1-bartosz.golaszewski@oss.qualcomm.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Tue, 28 Apr 2026 11:33:38 +0200</pubDate>
        <dc:creator>Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>cafac16b6207b88ad92fbba1169ae4f43865cb0d - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#cafac16b6207b88ad92fbba1169ae4f43865cb0d</link>
        <description>Merge drm/drm-next into drm-misc-nextGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 10:49:13 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9c9fe04e0fe3fdba7d4aafffa9b7bbb21f6fcbe1 - Merge tag &apos;v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#9c9fe04e0fe3fdba7d4aafffa9b7bbb21f6fcbe1</link>
        <description>Merge tag &apos;v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-nextLinux 7.1-rc1

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 09:39:48 +0200</pubDate>
        <dc:creator>Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>e728258debd553c95d2e70f9cd97c9fde27c7130 - Merge tag &apos;net-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#e728258debd553c95d2e70f9cd97c9fde27c7130</link>
        <description>Merge tag &apos;net-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPull  networking fixes from Jakub Kicinski: &quot;Including fixes from Netfilter.  Steady stream of fixes. Last two weeks feel comparable to the two  weeks before the merge window. Lots of AI-aided bug discovery. A newer  big source is Sashiko/Gemini (Roman Gushchin&apos;s system), which points  out issues in existing code during patch review (maybe 25% of fixes  here likely originating from Sashiko). Nice thing is these are often  fixed by the respective maintainers, not drive-bys.  Current release - new code bugs:   - kconfig: MDIO_PIC64HPSC should depend on ARCH_MICROCHIP  Previous releases - regressions:   - add async ndo_set_rx_mode and switch drivers which we promised to     be called under the per-netdev mutex to it   - dsa: remove duplicate netdev_lock_ops() for conduit ethtool ops   - hv_sock: report EOF instead of -EIO for FIN   - vsock/virtio: fix MSG_PEEK calculation on bytes to copy  Previous releases - always broken:   - ipv6: fix possible UAF in icmpv6_rcv()   - icmp: validate reply type before using icmp_pointers   - af_unix: drop all SCM attributes for SOCKMAP   - netfilter: fix a number of bugs in the osf (OS fingerprinting)   - eth: intel: fix timestamp interrupt configuration for E825C  Misc:   - bunch of data-race annotations&quot;* tag &apos;net-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (148 commits)  rxrpc: Fix error handling in rxgk_extract_token()  rxrpc: Fix re-decryption of RESPONSE packets  rxrpc: Fix rxrpc_input_call_event() to only unshare DATA packets  rxrpc: Fix missing validation of ticket length in non-XDR key preparsing  rxgk: Fix potential integer overflow in length check  rxrpc: Fix conn-level packet handling to unshare RESPONSE packets  rxrpc: Fix potential UAF after skb_unshare() failure  rxrpc: Fix rxkad crypto unalignment handling  rxrpc: Fix memory leaks in rxkad_verify_response()  net: rds: fix MR cleanup on copy error  m68k: mvme147: Make me the maintainer  net: txgbe: fix firmware version check  selftests/bpf: check epoll readiness during reuseport migration  tcp: call sk_data_ready() after listener migration  vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll()  ipv6: Cap TLV scan in ip6_tnl_parse_tlv_enc_lim  tipc: fix double-free in tipc_buf_append()  llc: Return -EINPROGRESS from llc_ui_connect()  ipv4: icmp: validate reply type before using icmp_pointers  selftests/net: packetdrill: cover RFC 5961 5.2 challenge ACK on both edges  ...

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Fri, 24 Apr 2026 01:50:42 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>1e9e7fd839b7f22b46762059c6f3e576b3e6e179 - net: mdio: MDIO_PIC64HPSC should depend on ARCH_MICROCHIP</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#1e9e7fd839b7f22b46762059c6f3e576b3e6e179</link>
        <description>net: mdio: MDIO_PIC64HPSC should depend on ARCH_MICROCHIPThe PIC64-HPSC/HX MDIO interface is only present on MicrochipPIC64-HPSC/HX SoCs.  Hence add a dependency on ARCH_MICROCHIP, toprevent asking the user about this driver when configuring a kernelwithout Microchip SoC support.Fixes: f76aef980206e7c6 (&quot;net: mdio: add a driver for PIC64-HPSC/HX MDIO controller&quot;)Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Reviewed-by: Charles Perry &lt;charles.perry@microchip.com&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Link: https://patch.msgid.link/980c57efa5843733ef95459c3283aebade56f142.1776162544.git.geert+renesas@glider.beSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Tue, 14 Apr 2026 12:30:47 +0200</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>91a4855d6c03e770e42f17c798a36a3c46e63de2 - Merge tag &apos;net-next-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#91a4855d6c03e770e42f17c798a36a3c46e63de2</link>
        <description>Merge tag &apos;net-next-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextPull networking updates from Jakub Kicinski: &quot;Core &amp; protocols:   - Support HW queue leasing, allowing containers to be granted access     to HW queues for zero-copy operations and AF_XDP   - Number of code moves to help the compiler with inlining. Avoid     output arguments for returning drop reason where possible   - Rework drop handling within qdiscs to include more metadata about     the reason and dropping qdisc in the tracepoints   - Remove the rtnl_lock use from IP Multicast Routing   - Pack size information into the Rx Flow Steering table pointer     itself. This allows making the table itself a flat array of u32s,     thus making the table allocation size a power of two   - Report TCP delayed ack timer information via socket diag   - Add ip_local_port_step_width sysctl to allow distributing the     randomly selected ports more evenly throughout the allowed space   - Add support for per-route tunsrc in IPv6 segment routing   - Start work of switching sockopt handling to iov_iter   - Improve dynamic recvbuf sizing in MPTCP, limit burstiness and avoid     buffer size drifting up   - Support MSG_EOR in MPTCP   - Add stp_mode attribute to the bridge driver for STP mode selection.     This addresses concerns about call_usermodehelper() usage   - Remove UDP-Lite support (as announced in 2023)   - Remove support for building IPv6 as a module. Remove the now     unnecessary function calling indirection  Cross-tree stuff:   - Move Michael MIC code from generic crypto into wireless, it&apos;s     considered insecure but some WiFi networks still need it  Netfilter:   - Switch nft_fib_ipv6 module to no longer need temporary dst_entry     object allocations by using fib6_lookup() + RCU.     Florian W reports this gets us ~13% higher packet rate   - Convert IPVS&apos;s global __ip_vs_mutex to per-net service_mutex and     switch the service tables to be per-net. Convert some code that     walks the service lists to use RCU instead of the service_mutex   - Add more opinionated input validation to lower security exposure   - Make IPVS hash tables to be per-netns and resizable  Wireless:   - Finished assoc frame encryption/EPPKE/802.1X-over-auth   - Radar detection improvements   - Add 6 GHz incumbent signal detection APIs   - Multi-link support for FILS, probe response templates and client     probing   - New APIs and mac80211 support for NAN (Neighbor Aware Networking,     aka Wi-Fi Aware) so less work must be in firmware  Driver API:   - Add numerical ID for devlink instances (to avoid having to create     fake bus/device pairs just to have an ID). Support shared devlink     instances which span multiple PFs   - Add standard counters for reporting pause storm events (implement     in mlx5 and fbnic)   - Add configuration API for completion writeback buffering (implement     in mana)   - Support driver-initiated change of RSS context sizes   - Support DPLL monitoring input frequency (implement in zl3073x)   - Support per-port resources in devlink (implement in mlx5)  Misc:   - Expand the YAML spec for Netfilter  Drivers   - Software:      - macvlan: support multicast rx for bridge ports with shared        source MAC address      - team: decouple receive and transmit enablement for IEEE 802.3ad        LACP &quot;independent control&quot;   - Ethernet high-speed NICs:      - nVidia/Mellanox:         - support high order pages in zero-copy mode (for payload           coalescing)         - support multiple packets in a page (for systems with 64kB           pages)      - Broadcom 25-400GE (bnxt):         - implement XDP RSS hash metadata extraction         - add software fallback for UDP GSO, lowering the IOMMU cost      - Broadcom 800GE (bnge):         - add link status and configuration handling         - add various HW and SW statistics      - Marvell/Cavium:         - NPC HW block support for cn20k      - Huawei (hinic3):         - add mailbox / control queue         - add rx VLAN offload         - add driver info and link management   - Ethernet NICs:      - Marvell/Aquantia:         - support reading SFP module info on some AQC100 cards      - Realtek PCI (r8169):         - add support for RTL8125cp      - Realtek USB (r8152):         - support for the RTL8157 5Gbit chip         - add 2500baseT EEE status/configuration support   - Ethernet NICs embedded and off-the-shelf IP:      - Synopsys (stmmac):         - cleanup and reorganize SerDes handling and PCS support         - cleanup descriptor handling and per-platform data         - cleanup and consolidate MDIO defines and handling         - shrink driver memory use for internal structures         - improve Tx IRQ coalescing         - improve TCP segmentation handling         - add support for Spacemit K3      - Cadence (macb):         - support PHYs that have inband autoneg disabled with GEM         - support IEEE 802.3az EEE         - rework usrio capabilities and handling      - AMD (xgbe):         - improve power management for S0i3         - improve TX resilience for link-down handling   - Virtual:      - Google cloud vNIC:         - support larger ring sizes in DQO-QPL mode         - improve HW-GRO handling         - support UDP GSO for DQO format      - PCIe NTB:         - support queue count configuration   - Ethernet PHYs:      - automatically disable PHY autonomous EEE if MAC is in charge      - Broadcom:         - add BCM84891/BCM84892 support      - Micrel:         - support for LAN9645X internal PHY      - Realtek:         - add RTL8224 pair order support         - support PHY LEDs on RTL8211F-VD         - support spread spectrum clocking (SSC)      - Maxlinear:         - add PHY-level statistics via ethtool   - Ethernet switches:      - Maxlinear (mxl862xx):         - support for bridge offloading         - support for VLANs         - support driver statistics   - Bluetooth:      - large number of fixes and new device IDs      - Mediatek:         - support MT6639 (MT7927)         - support MT7902 SDIO   - WiFi:      - Intel (iwlwifi):         - UNII-9 and continuing UHR work      - MediaTek (mt76):         - mt7996/mt7925 MLO fixes/improvements         - mt7996 NPU support (HW eth/wifi traffic offload)      - Qualcomm (ath12k):         - monitor mode support on IPQ5332         - basic hwmon temperature reporting         - support IPQ5424      - Realtek:         - add USB RX aggregation to improve performance         - add USB TX flow control by tracking in-flight URBs   - Cellular:      - IPA v5.2 support&quot;* tag &apos;net-next-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1561 commits)  net: pse-pd: fix kernel-doc function name for pse_control_find_by_id()  wireguard: device: use exit_rtnl callback instead of manual rtnl_lock in pre_exit  wireguard: allowedips: remove redundant space  tools: ynl: add sample for wireguard  wireguard: allowedips: Use kfree_rcu() instead of call_rcu()  MAINTAINERS: Add netkit selftest files  selftests/net: Add additional test coverage in nk_qlease  selftests/net: Split netdevsim tests from HW tests in nk_qlease  tools/ynl: Make YnlFamily closeable as a context manager  net: airoha: Add missing PPE configurations in airoha_ppe_hw_init()  net: airoha: Fix VIP configuration for AN7583 SoC  net: caif: clear client service pointer on teardown  net: strparser: fix skb_head leak in strp_abort_strp()  net: usb: cdc-phonet: fix skb frags[] overflow in rx_complete()  selftests/bpf: add test for xdp_master_redirect with bond not up  net, bpf: fix null-ptr-deref in xdp_master_redirect() for down master  net: airoha: Remove PCE_MC_EN_MASK bit in REG_FE_PCE_CFG configuration  sctp: disable BH before calling udp_tunnel_xmit_skb()  sctp: fix missing encap_port propagation for GSO fragments  net: airoha: Rely on net_device pointer in ETS callbacks  ...

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Wed, 15 Apr 2026 03:36:10 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>cf5389811ae61fa8749a443d822e9a374080b251 - Merge branch &apos;add-support-for-pic64-hpsc-hx-mdio-controller&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/mdio/Kconfig#cf5389811ae61fa8749a443d822e9a374080b251</link>
        <description>Merge branch &apos;add-support-for-pic64-hpsc-hx-mdio-controller&apos;Charles Perry says:====================Add support for PIC64-HPSC/HX MDIO controllerThis series adds a driver for the two MDIO controllers of PIC64-HPSC/HX.The hardware supports C22 and C45 but only C22 is implemented for now.This MDIO hardware is based on a Microsemi design supported in Linux bymdio-mscc-miim.c. However, The register interface is completely differentwith pic64hpsc, hence the need for a separate driver.The documentation recommends an input clock of 156.25MHz and a prescaler of39, which yields an MDIO clock of 1.95MHz.This was tested on Microchip HB1301 evalkit which has a VSC8574 and aVSC8541. I&apos;ve tested with bus frequencies of 0.6, 1.95 and 2.5 MHz.This series also adds a PHY write barrier when disabling PHY interrupts asdiscussed in: https://lore.kernel.org/acvUqDgepCIScs8M@shell.armlinux.org.uk====================Link: https://patch.msgid.link/20260408131821.1145334-1-charles.perry@microchip.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/mdio/Kconfig</description>
        <pubDate>Sun, 12 Apr 2026 23:19:25 +0200</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
