<?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>a55f7f5f29b32c2c53cc291899cf9b0c25a07f7c - Merge tag &apos;net-7.0-rc8&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#a55f7f5f29b32c2c53cc291899cf9b0c25a07f7c</link>
        <description>Merge tag &apos;net-7.0-rc8&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPull networking fixes from Paolo Abeni: &quot;Including fixes from netfilter, IPsec and wireless. This is again  considerably bigger than the old average. No known outstanding  regressions.  Current release - regressions:   - net: increase IP_TUNNEL_RECURSION_LIMIT to 5   - eth: ice: fix PTP timestamping broken by SyncE code on E825C  Current release - new code bugs:   - eth: stmmac: dwmac-motorcomm: fix eFUSE MAC address read failure  Previous releases - regressions:   - core: fix cross-cache free of KFENCE-allocated skb head   - sched: act_csum: validate nested VLAN headers   - rxrpc: fix call removal to use RCU safe deletion   - xfrm:      - wait for RCU readers during policy netns exit      - fix refcount leak in xfrm_migrate_policy_find   - wifi: rt2x00usb: fix devres lifetime   - mptcp: fix slab-use-after-free in __inet_lookup_established   - ipvs: fix NULL deref in ip_vs_add_service error path   - eth:      - airoha: fix memory leak in airoha_qdma_rx_process()      - lan966x: fix use-after-free and leak in lan966x_fdma_reload()  Previous releases - always broken:   - ipv6: ioam: fix potential NULL dereferences in __ioam6_fill_trace_data()   - ipv4: nexthop: avoid duplicate NHA_HW_STATS_ENABLE on nexthop group     dump   - bridge: guard local VLAN-0 FDB helpers against NULL vlan group   - xsk: tailroom reservation and MTU validation   - rxrpc:      - fix to request an ack if window is limited      - fix RESPONSE authenticator parser OOB read   - netfilter: nft_ct: fix use-after-free in timeout object destroy   - batman-adv: hold claim backbone gateways by reference   - eth:      - stmmac: fix PTP ref clock for Tegra234      - idpf: fix PREEMPT_RT raw/bh spinlock nesting for async VC handling      - ipa: fix GENERIC_CMD register field masks for IPA v5.0+&quot;* tag &apos;net-7.0-rc8&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (104 commits)  net: lan966x: fix use-after-free and leak in lan966x_fdma_reload()  net: lan966x: fix page pool leak in error paths  net: lan966x: fix page_pool error handling in lan966x_fdma_rx_alloc_page_pool()  nfc: pn533: allocate rx skb before consuming bytes  l2tp: Drop large packets with UDP encap  net: ipa: fix event ring index not programmed for IPA v5.0+  net: ipa: fix GENERIC_CMD register field masks for IPA v5.0+  MAINTAINERS: Add Prashanth as additional maintainer for amd-xgbe driver  devlink: Fix incorrect skb socket family dumping  af_unix: read UNIX_DIAG_VFS data under unix_state_lock  Revert &quot;mptcp: add needs_id for netlink appending addr&quot;  mptcp: fix slab-use-after-free in __inet_lookup_established  net: txgbe: leave space for null terminators on property_entry  net: ioam6: fix OOB and missing lock  rxrpc: proc: size address buffers for %pISpc output  rxrpc: only handle RESPONSE during service challenge  rxrpc: Fix buffer overread in rxgk_do_verify_authenticator()  rxrpc: Fix leak of rxgk context in rxgk_verify_response()  rxrpc: Fix integer overflow in rxgk_verify_response()  rxrpc: Fix missing error checks for rxkad encryption/decryption failure  ...

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Thu, 09 Apr 2026 17:39:25 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>e16a0d36777b572196de4944aaa196adf828eb8e - net: fec: make FIXED_PHY dependency unconditional</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#e16a0d36777b572196de4944aaa196adf828eb8e</link>
        <description>net: fec: make FIXED_PHY dependency unconditionalWhen CONFIG_FIXED_PHY is in a loadable module, the fec driver cannot bebuilt-in any more:x86_64-linux-ld: vmlinux.o: in function `fec_enet_mii_probe&apos;:fec_main.c:(.text+0xc4f367): undefined reference to `fixed_phy_unregister&apos;x86_64-linux-ld: vmlinux.o: in function `fec_enet_close&apos;:fec_main.c:(.text+0xc59591): undefined reference to `fixed_phy_unregister&apos;x86_64-linux-ld: vmlinux.o: in function `fec_enet_mii_probe.cold&apos;:Select the fixed phy support on all targets to make this buildcorrectly, not just on coldfire.Notat that Essentially the stub helpers in include/linux/phy_fixed.hcannot be used correctly because of this build time dependency,and we could just remove them to hit the build failure more oftenwhen a driver uses them without the &apos;select FIXED_PHY&apos;.Fixes: dc86b621e1b4 (&quot;net: fec: register a fixed phy using fixed_phy_register_100fd if needed&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Link: https://patch.msgid.link/20260402141048.2713445-1-arnd@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Thu, 02 Apr 2026 16:10:40 +0200</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#5add3c3c280a35f7e258e9cef7607db5a2e56fdc</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.19-rc1. An important upstream bugfix andto help unblock PTL CI.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Fri, 19 Dec 2025 11:51:22 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#b8304863a3990d0f18c38e5b94191830a63ee1af</link>
        <description>Merge drm/drm-next into drm-intel-nextSync-up some display code needed for Async flips refactor.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7f790dd21a931c61167f7bdc327aecf2cebad327 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#7f790dd21a931c61167f7bdc327aecf2cebad327</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s kickstart the v6.20 (7.0?) release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Mon, 15 Dec 2025 09:27:39 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>24f171c7e145f43b9f187578e89b0982ce87e54c - Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#24f171c7e145f43b9f187578e89b0982ce87e54c</link>
        <description>Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.19We&apos;ve been quite busy with fixes since the merge window, though not inany particularly exciting ways - the standout thing is the fix for _SXcontrols which were broken by a change to how we do clamping, otherwiseit&apos;s all fairly run of the mill fixes and quirks.

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Sun, 21 Dec 2025 11:11:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>84318277d6334c6981ab326d4acc87c6a6ddc9b8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#84318277d6334c6981ab326d4acc87c6a6ddc9b8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesPull in rc1 to include all changes since the merge window closed,and grab all fixes and changes from drm/drm-next.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Mon, 15 Dec 2025 12:53:27 +0100</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>8f7aa3d3c7323f4ca2768a9e74ebbe359c4f8f88 - Merge tag &apos;net-next-6.19&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/ethernet/freescale/Kconfig#8f7aa3d3c7323f4ca2768a9e74ebbe359c4f8f88</link>
        <description>Merge tag &apos;net-next-6.19&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextPull networking updates from Jakub Kicinski: &quot;Core &amp; protocols:   - Replace busylock at the Tx queuing layer with a lockless list.     Resulting in a 300% (4x) improvement on heavy TX workloads, sending     twice the number of packets per second, for half the cpu cycles.   - Allow constantly busy flows to migrate to a more suitable CPU/NIC     queue.     Normally we perform queue re-selection when flow comes out of idle,     but under extreme circumstances the flows may be constantly busy.     Add sysctl to allow periodic rehashing even if it&apos;d risk packet     reordering.   - Optimize the NAPI skb cache, make it larger, use it in more paths.   - Attempt returning Tx skbs to the originating CPU (like we already     did for Rx skbs).   - Various data structure layout and prefetch optimizations from Eric.   - Remove ktime_get() from the recvmsg() fast path, ktime_get() is     sadly quite expensive on recent AMD machines.   - Extend threaded NAPI polling to allow the kthread busy poll for     packets.   - Make MPTCP use Rx backlog processing. This lowers the lock     pressure, improving the Rx performance.   - Support memcg accounting of MPTCP socket memory.   - Allow admin to opt sockets out of global protocol memory accounting     (using a sysctl or BPF-based policy). The global limits are a poor     fit for modern container workloads, where limits are imposed using     cgroups.   - Improve heuristics for when to kick off AF_UNIX garbage collection.   - Allow users to control TCP SACK compression, and default to 33% of     RTT.   - Add tcp_rcvbuf_low_rtt sysctl to let datacenter users avoid     unnecessarily aggressive rcvbuf growth and overshot when the     connection RTT is low.   - Preserve skb metadata space across skb_push / skb_pull operations.   - Support for IPIP encapsulation in the nftables flowtable offload.   - Support appending IP interface information to ICMP messages (RFC     5837).   - Support setting max record size in TLS (RFC 8449).   - Remove taking rtnl_lock from RTM_GETNEIGHTBL and RTM_SETNEIGHTBL.   - Use a dedicated lock (and RCU) in MPLS, instead of rtnl_lock.   - Let users configure the number of write buffers in SMC.   - Add new struct sockaddr_unsized for sockaddr of unknown length,     from Kees.   - Some conversions away from the crypto_ahash API, from Eric Biggers.   - Some preparations for slimming down struct page.   - YAML Netlink protocol spec for WireGuard.   - Add a tool on top of YAML Netlink specs/lib for reporting commonly     computed derived statistics and summarized system state.  Driver API:   - Add CAN XL support to the CAN Netlink interface.   - Add uAPI for reporting PHY Mean Square Error (MSE) diagnostics, as     defined by the OPEN Alliance&apos;s &quot;Advanced diagnostic features for     100BASE-T1 automotive Ethernet PHYs&quot; specification.   - Add DPLL phase-adjust-gran pin attribute (and implement it in     zl3073x).   - Refactor xfrm_input lock to reduce contention when NIC offloads     IPsec and performs RSS.   - Add info to devlink params whether the current setting is the     default or a user override. Allow resetting back to default.   - Add standard device stats for PSP crypto offload.   - Leverage DSA frame broadcast to implement simple HSR frame     duplication for a lot of switches without dedicated HSR offload.   - Add uAPI defines for 1.6Tbps link modes.  Device drivers:   - Add Motorcomm YT921x gigabit Ethernet switch support.   - Add MUCSE driver for N500/N210 1GbE NIC series.   - Convert drivers to support dedicated ops for timestamping control,     and away from the direct IOCTL handling. While at it support GET     operations for PHY timestamping.   - Add (and convert most drivers to) a dedicated ethtool callback for     reading the Rx ring count.   - Significant refactoring efforts in the STMMAC driver, which     supports Synopsys turn-key MAC IP integrated into a ton of SoCs.   - Ethernet high-speed NICs:      - Broadcom (bnxt):         - support PPS in/out on all pins      - Intel (100G, ice, idpf):         - ice: implement standard ethtool and timestamping stats         - i40e: support setting the max number of MAC addresses per VF         - iavf: support RSS of GTP tunnels for 5G and LTE deployments      - nVidia/Mellanox (mlx5):         - reduce downtime on interface reconfiguration         - disable being an XDP redirect target by default (same as           other drivers) to avoid wasting resources if feature is           unused      - Meta (fbnic):         - add support for Linux-managed PCS on 25G, 50G, and 100G links      - Wangxun:         - support Rx descriptor merge, and Tx head writeback         - support Rx coalescing offload         - support 25G SPF and 40G QSFP modules   - Ethernet virtual:      - Google (gve):         - allow ethtool to configure rx_buf_len         - implement XDP HW RX Timestamping support for DQ descriptor           format      - Microsoft vNIC (mana):         - support HW link state events         - handle hardware recovery events when probing the device   - Ethernet NICs consumer, and embedded:      - usbnet: add support for Byte Queue Limits (BQL)      - AMD (amd-xgbe):         - add device selftests      - NXP (enetc):         - add i.MX94 support      - Broadcom integrated MACs (bcmgenet, bcmasp):         - bcmasp: add support for PHY-based Wake-on-LAN      - Broadcom switches (b53):         - support port isolation         - support BCM5389/97/98 and BCM63XX ARL formats      - Lantiq/MaxLinear switches:         - support bridge FDB entries on the CPU port         - use regmap for register access         - allow user to enable/disable learning         - support Energy Efficient Ethernet         - support configuring RMII clock delays         - add tagging driver for MaxLinear GSW1xx switches      - Synopsys (stmmac):         - support using the HW clock in free running mode         - add Eswin EIC7700 support         - add Rockchip RK3506 support         - add Altera Agilex5 support      - Cadence (macb):         - cleanup and consolidate descriptor and DMA address handling         - add EyeQ5 support      - TI:         - icssg-prueth: support AF_XDP      - Airoha access points:         - add missing Ethernet stats and link state callback         - add AN7583 support         - support out-of-order Tx completion processing      - Power over Ethernet:         - pd692x0: preserve PSE configuration across reboots         - add support for TPS23881B devices   - Ethernet PHYs:      - Open Alliance OATC14 10BASE-T1S PHY cable diagnostic support      - Support 50G SerDes and 100G interfaces in Linux-managed PHYs      - micrel:         - support for non PTP SKUs of lan8814         - enable in-band auto-negotiation on lan8814      - realtek:         - cable testing support on RTL8224         - interrupt support on RTL8221B      - motorcomm: support for PHY LEDs on YT853      - microchip: support for LAN867X Rev.D0 PHYs w/ SQI and cable diag      - mscc: support for PHY LED control   - CAN drivers:      - m_can: add support for optional reset and system wake up      - remove can_change_mtu() obsoleted by core handling      - mcp251xfd: support GPIO controller functionality   - Bluetooth:      - add initial support for PASTa   - WiFi:      - split ieee80211.h file, it&apos;s way too big      - improvements in VHT radiotap reporting, S1G, Channel Switch        Announcement handling, rate tracking in mesh networks      - improve multi-radio monitor mode support, and add a cfg80211        debugfs interface for it      - HT action frame handling on 6 GHz      - initial chanctx work towards NAN      - MU-MIMO sniffer improvements   - WiFi drivers:      - RealTek (rtw89):         - support USB devices RTL8852AU and RTL8852CU         - initial work for RTL8922DE         - improved injection support      - Intel:         - iwlwifi: new sniffer API support      - MediaTek (mt76):         - WED support for &gt;32-bit DMA         - airoha NPU support         - regdomain improvements         - continued WiFi7/MLO work      - Qualcomm/Atheros:         - ath10k: factory test support         - ath11k: TX power insertion support         - ath12k: BSS color change support         - ath12k: statistics improvements      - brcmfmac: Acer A1 840 tablet quirk      - rtl8xxxu: 40 MHz connection fixes/support&quot;* tag &apos;net-next-6.19&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1381 commits)  net: page_pool: sanitise allocation order  net: page pool: xa init with destroy on pp init  net/mlx5e: Support XDP target xmit with dummy program  net/mlx5e: Update XDP features in switch channels  selftests/tc-testing: Test CAKE scheduler when enqueue drops packets  net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop  wireguard: netlink: generate netlink code  wireguard: uapi: generate header with ynl-gen  wireguard: uapi: move flag enums  wireguard: uapi: move enum wg_cmd  wireguard: netlink: add YNL specification  selftests: drv-net: Fix tolerance calculation in devlink_rate_tc_bw.py  selftests: drv-net: Fix and clarify TC bandwidth split in devlink_rate_tc_bw.py  selftests: drv-net: Set shell=True for sysfs writes in devlink_rate_tc_bw.py  selftests: drv-net: Use Iperf3Runner in devlink_rate_tc_bw.py  selftests: drv-net: introduce Iperf3Runner for measurement use cases  selftests: drv-net: Add devlink_rate_tc_bw.py to TEST_PROGS  net: ps3_gelic_net: Use napi_alloc_skb() and napi_gro_receive()  Documentation: net: dsa: mention simple HSR offload helpers  Documentation: net: dsa: mention availability of RedBox  ...

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Thu, 04 Dec 2025 02:24:33 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bd0fa860730861bd6482b7acc5d39fd1e15c7453 - Merge branch &apos;net-phy-remove-fixed_phy_add-and-first-its-users&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#bd0fa860730861bd6482b7acc5d39fd1e15c7453</link>
        <description>Merge branch &apos;net-phy-remove-fixed_phy_add-and-first-its-users&apos;Heiner Kallweit says:====================net: phy: remove fixed_phy_add and first its usersfixed_phy_add() has a number of problems/disadvantages:- It uses phy address 0 w/o checking whether a fixed phy with this  address exists already.- A subsequent call to fixed_phy_register() would also use phy address 0,  because fixed_phy_add() doesn&apos;t mark it as used.- fixed_phy_add() is used from platform code, therefore requires that  fixed phy code is built-in.fixed_phy_add() has only two users- coldfire/5272, using fec- bcm47xx, using b44So migrate fec and b44 to use fixed_phy_register_100fd(), afterwardsremove usage of fixed_phy_add() from the two platforms, and eventuallyremove fixed_phy_add().====================Link: https://patch.msgid.link/0285fcb0-0fb5-4f6f-823c-7b6e85e28ba3@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Wed, 05 Nov 2025 03:46:15 +0100</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>dc86b621e1b4129cc9ceea09ee449ae97fcf106f - net: fec: register a fixed phy using fixed_phy_register_100fd if needed</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#dc86b621e1b4129cc9ceea09ee449ae97fcf106f</link>
        <description>net: fec: register a fixed phy using fixed_phy_register_100fd if neededIn case of coldfire/5272 a fixed phy is used, which so far is createdby platform code, using fixed_phy_add(). This function has a number ofproblems, therefore create a potentially needed fixed phy here, usingfixed_phy_register_100fd.Note 1: This includes a small functional change, as coldfire/5272created a fixed phy in half-duplex mode. Likely this was by mistake,because the fec MAC is 100FD-capable, and connection is to a switch.Note 2: Usage of phy_find_next() makes use of the fact that dev_id canonly be 0 or 1.Due to lack of hardware, this is compile-tested only.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Link: https://patch.msgid.link/adf4dc5c-5fa3-4ae6-a75c-a73954dede73@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Thu, 30 Oct 2025 22:42:30 +0100</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#f088104d837a991c65e51fa30bb4196169b3244d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerge in order to get the commit:  048832a3f400 (&quot;drm/i915: Refactor shmem_pwrite() to use kiocb and write_iter&quot;)To drm-intel-gt-next as there are followup fixes to be applied.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Tue, 16 Sep 2025 12:53:20 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ab93e0dd72c37d378dd936f031ffb83ff2bd87ce - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#ab93e0dd72c37d378dd936f031ffb83ff2bd87ce</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.17 merge window.

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Wed, 06 Aug 2025 19:08:54 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a7bee4e7f78089c101be2ad51f4b5ec64782053e - Merge tag &apos;ib-mfd-gpio-input-pwm-v6.17&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#a7bee4e7f78089c101be2ad51f4b5ec64782053e</link>
        <description>Merge tag &apos;ib-mfd-gpio-input-pwm-v6.17&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd into nextMerge an immutable branch between MFD, GPIO, Input and PWM to resolveconflicts for the merge window pull request.

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Mon, 04 Aug 2025 08:28:48 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>74f1af95820fc2ee580a775a3a17c416db30b38c - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#74f1af95820fc2ee580a775a3a17c416db30b38c</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-nextBack-merge drm-next to (indirectly) get arm-smmu updates for makingstall-on-fault more reliable.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Sun, 29 Jun 2025 04:54:49 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>c598d5eb9fb331ba17bc9ad67ae9a2231ca5aca5 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#c598d5eb9fb331ba17bc9ad67ae9a2231ca5aca5</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to forward to v6.16-rc1Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Wed, 11 Jun 2025 09:01:34 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>86e2d052c2320bf12571a5d96b16c2745e1cfc5e - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#86e2d052c2320bf12571a5d96b16c2745e1cfc5e</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.16Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Mon, 09 Jun 2025 18:26:55 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>34c55367af96f62e89221444f04487440ebc6487 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#34c55367af96f62e89221444f04487440ebc6487</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.16-rc1, among other things to get the fixed size GENMASK_U*()and BIT_U*() macros.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Mon, 09 Jun 2025 11:40:46 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1b98f357dadd6ea613a435fbaef1a5dd7b35fd21 - Merge tag &apos;net-next-6.16&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/ethernet/freescale/Kconfig#1b98f357dadd6ea613a435fbaef1a5dd7b35fd21</link>
        <description>Merge tag &apos;net-next-6.16&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextPull networking updates from Paolo Abeni: &quot;Core:   - Implement the Device Memory TCP transmit path, allowing zero-copy     data transmission on top of TCP from e.g. GPU memory to the wire.   - Move all the IPv6 routing tables management outside the RTNL scope,     under its own lock and RCU. The route control path is now 3x times     faster.   - Convert queue related netlink ops to instance lock, reducing again     the scope of the RTNL lock. This improves the control plane     scalability.   - Refactor the software crc32c implementation, removing unneeded     abstraction layers and improving significantly the related     micro-benchmarks.   - Optimize the GRO engine for UDP-tunneled traffic, for a 10%     performance improvement in related stream tests.   - Cover more per-CPU storage with local nested BH locking; this is a     prep work to remove the current per-CPU lock in local_bh_disable()     on PREMPT_RT.   - Introduce and use nlmsg_payload helper, combining buffer bounds     verification with accessing payload carried by netlink messages.  Netfilter:   - Rewrite the procfs conntrack table implementation, improving     considerably the dump performance. A lot of user-space tools still     use this interface.   - Implement support for wildcard netdevice in netdev basechain and     flowtables.   - Integrate conntrack information into nft trace infrastructure.   - Export set count and backend name to userspace, for better     introspection.  BPF:   - BPF qdisc support: BPF-qdisc can be implemented with BPF struct_ops     programs and can be controlled in similar way to traditional qdiscs     using the &quot;tc qdisc&quot; command.   - Refactor the UDP socket iterator, addressing long standing issues     WRT duplicate hits or missed sockets.  Protocols:   - Improve TCP receive buffer auto-tuning and increase the default     upper bound for the receive buffer; overall this improves the     single flow maximum thoughput on 200Gbs link by over 60%.   - Add AFS GSSAPI security class to AF_RXRPC; it provides transport     security for connections to the AFS fileserver and VL server.   - Improve TCP multipath routing, so that the sources address always     matches the nexthop device.   - Introduce SO_PASSRIGHTS for AF_UNIX, to allow disabling SCM_RIGHTS,     and thus preventing DoS caused by passing around problematic FDs.   - Retire DCCP socket. DCCP only receives updates for bugs, and major     distros disable it by default. Its removal allows for better     organisation of TCP fields to reduce the number of cache lines hit     in the fast path.   - Extend TCP drop-reason support to cover PAWS checks.  Driver API:   - Reorganize PTP ioctl flag support to require an explicit opt-in for     the drivers, avoiding the problem of drivers not rejecting new     unsupported flags.   - Converted several device drivers to timestamping APIs.   - Introduce per-PHY ethtool dump helpers, improving the support for     dump operations targeting PHYs.  Tests and tooling:   - Add support for classic netlink in user space C codegen, so that     ynl-c can now read, create and modify links, routes addresses and     qdisc layer configuration.   - Add ynl sub-types for binary attributes, allowing ynl-c to output     known struct instead of raw binary data, clarifying the classic     netlink output.   - Extend MPTCP selftests to improve the code-coverage.   - Add tests for XDP tail adjustment in AF_XDP.  New hardware / drivers:   - OpenVPN virtual driver: offload OpenVPN data channels processing to     the kernel-space, increasing the data transfer throughput WRT the     user-space implementation.   - Renesas glue driver for the gigabit ethernet RZ/V2H(P) SoC.   - Broadcom asp-v3.0 ethernet driver.   - AMD Renoir ethernet device.   - ReakTek MT9888 2.5G ethernet PHY driver.   - Aeonsemi 10G C45 PHYs driver.  Drivers:   - Ethernet high-speed NICs:       - nVidia/Mellanox (mlx5):           - refactor the steering table handling to significantly             reduce the amount of memory used           - add support for complex matches in H/W flow steering           - improve flow streeing error handling           - convert to netdev instance locking       - Intel (100G, ice, igb, ixgbe, idpf):           - ice: add switchdev support for LLDP traffic over VF           - ixgbe: add firmware manipulation and regions devlink support           - igb: introduce support for frame transmission premption           - igb: adds persistent NAPI configuration           - idpf: introduce RDMA support           - idpf: add initial PTP support       - Meta (fbnic):           - extend hardware stats coverage           - add devlink dev flash support       - Broadcom (bnxt):           - add support for RX-side device memory TCP       - Wangxun (txgbe):           - implement support for udp tunnel offload           - complete PTP and SRIOV support for AML 25G/10G devices   - Ethernet NICs embedded and virtual:       - Google (gve):           - add device memory TCP TX support       - Amazon (ena):           - support persistent per-NAPI config       - Airoha:           - add H/W support for L2 traffic offload           - add per flow stats for flow offloading       - RealTek (rtl8211): add support for WoL magic packet       - Synopsys (stmmac):           - dwmac-socfpga 1000BaseX support           - add Loongson-2K3000 support           - introduce support for hardware-accelerated VLAN stripping       - Broadcom (bcmgenet):           - expose more H/W stats       - Freescale (enetc, dpaa2-eth):           - enetc: add MAC filter, VLAN filter RSS and loopback support           - dpaa2-eth: convert to H/W timestamping APIs       - vxlan: convert FDB table to rhashtable, for better scalabilty       - veth: apply qdisc backpressure on full ring to reduce TX drops   - Ethernet switches:       - Microchip (kzZ88x3): add ETS scheduler support   - Ethernet PHYs:       - RealTek (rtl8211):           - add support for WoL magic packet           - add support for PHY LEDs   - CAN:       - Adds RZ/G3E CANFD support to the rcar_canfd driver.       - Preparatory work for CAN-XL support.       - Add self-tests framework with support for CAN physical interfaces.   - WiFi:       - mac80211:           - scan improvements with multi-link operation (MLO)       - Qualcomm (ath12k):           - enable AHB support for IPQ5332           - add monitor interface support to QCN9274           - add multi-link operation support to WCN7850           - add 802.11d scan offload support to WCN7850           - monitor mode for WCN7850, better 6 GHz regulatory       - Qualcomm (ath11k):           - restore hibernation support       - MediaTek (mt76):           - WiFi-7 improvements           - implement support for mt7990       - Intel (iwlwifi):           - enhanced multi-link single-radio (EMLSR) support on 5 GHz links           - rework device configuration       - RealTek (rtw88):           - improve throughput for RTL8814AU       - RealTek (rtw89):           - add multi-link operation support           - STA/P2P concurrency improvements           - support different SAR configs by antenna   - Bluetooth:       - introduce HCI Driver protocol       - btintel_pcie: do not generate coredump for diagnostic events       - btusb: add HCI Drv commands for configuring altsetting       - btusb: add RTL8851BE device 0x0bda:0xb850       - btusb: add new VID/PID 13d3/3584 for MT7922       - btusb: add new VID/PID 13d3/3630 and 13d3/3613 for MT7925       - btnxpuart: implement host-wakeup feature&quot;* tag &apos;net-next-6.16&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1611 commits)  selftests/bpf: Fix bpf selftest build warning  selftests: netfilter: Fix skip of wildcard interface test  net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames  net: openvswitch: Fix the dead loop of MPLS parse  calipso: Don&apos;t call calipso functions for AF_INET sk.  selftests/tc-testing: Add a test for HFSC eltree double add with reentrant enqueue behaviour on netem  net_sched: hfsc: Address reentrant enqueue adding class to eltree twice  octeontx2-pf: QOS: Refactor TC_HTB_LEAF_DEL_LAST callback  octeontx2-pf: QOS: Perform cache sync on send queue teardown  net: mana: Add support for Multi Vports on Bare metal  net: devmem: ncdevmem: remove unused variable  net: devmem: ksft: upgrade rx test to send 1K data  net: devmem: ksft: add 5 tuple FS support  net: devmem: ksft: add exit_wait to make rx test pass  net: devmem: ksft: add ipv4 support  net: devmem: preserve sockc_err  page_pool: fix ugly page_pool formatting  net: devmem: move list_add to net_devmem_bind_dmabuf.  selftests: netfilter: nft_queue.sh: include file transfer duration in log message  net: phy: mscc: Fix memory leak when using one step timestamping  ...

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Thu, 29 May 2025 00:24:36 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>73d952840d9f84d0ba94d21a35b3e8149f5a28ed - net: phy: remove Kconfig symbol MDIO_DEVRES</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/net/ethernet/freescale/Kconfig#73d952840d9f84d0ba94d21a35b3e8149f5a28ed</link>
        <description>net: phy: remove Kconfig symbol MDIO_DEVRESMDIO_DEVRES is only set where PHYLIB/PHYLINK are set whichselect MDIO_DEVRES. So we can remove this symbol.Note: Due to circular module dependencies we can&apos;t simply      make mdio_devres.c part of phylib.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Link: https://patch.msgid.link/27cba535-f507-4b32-84a3-0744c783a465@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/net/ethernet/freescale/Kconfig</description>
        <pubDate>Sun, 11 May 2025 23:13:25 +0200</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
