<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>5dfa01ef37a8b944773aef8dee747cd76dec4234 - Merge tag &apos;vfs-7.1-rc5.fixes&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#5dfa01ef37a8b944773aef8dee747cd76dec4234</link>
        <description>Merge tag &apos;vfs-7.1-rc5.fixes&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsPull vfs fixes from Christian Brauner: &quot;This contains a fixes for the current development cycle. Note that AI  related review sometimes delays fixes a bit because we find more fixes  for the fixes. I might try and send smaller but more fixes PRs if this  trend keeps up.   - Fix various netfslib bugs   - Fix an out-of-bounds write when listing idmappings   - Fix the return values in jfs_mkdir() and orangefs_mkdir()   - Fix a writeback writeback array overflow in fuse   - Fix a forced iversion increment on lazytime timestamp updates   - Reject a negative timeval component in kern_select()   - Fix error return when vfs_mkdir() fails in the cachefiles code   - Fix wrong error code returned for pidns ioctls&quot;* tag &apos;vfs-7.1-rc5.fixes&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: (31 commits)  cachefiles: Fix error return when vfs_mkdir() fails  afs: Fix the locking used by afs_get_link()  netfs, afs: Fix write skipping in dir/link writepages  netfs: Fix netfs_read_folio() to wait on writeback  netfs: Fix folio-&gt;private handling in netfs_perform_write()  netfs: Fix partial invalidation of streaming-write folio  netfs: Fix potential UAF in netfs_unlock_abandoned_read_pages()  netfs: Fix leak of request in netfs_write_begin() error handling  netfs: Fix early put of sink folio in netfs_read_gaps()  netfs: Fix write streaming disablement if fd open O_RDWR  netfs: Fix read-gaps to remove netfs_folio from filled folio  netfs: Fix potential deadlock in write-through mode  netfs: Fix streaming write being overwritten  netfs: Defer the emission of trace_netfs_folio()  netfs: Fix netfs_invalidate_folio() to clear dirty bit if all changes gone  netfs: Fix overrun check in netfs_extract_user_iter()  netfs: fix error handling in netfs_extract_user_iter()  netfs: Fix potential uninitialised var in netfs_extract_user_iter()  netfs: fix VM_BUG_ON_FOLIO() issue in netfs_write_begin() call  netfs: Fix zeropoint update where i_size &gt; remote_i_size  ...

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Mon, 18 May 2026 16:30:31 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>45205929a3a3310e4978f4097d8ed4fca36b2c32 - Merge patch series &quot;netfs: Miscellaneous fixes&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#45205929a3a3310e4978f4097d8ed4fca36b2c32</link>
        <description>Merge patch series &quot;netfs: Miscellaneous fixes&quot;David Howells &lt;dhowells@redhat.com&gt; says:Here are the outstanding miscellaneous fixes for netfslib gathered togetherand with some fixes-to-fixes folded down and one rearrangement.  VariousSashiko review comments[1][2][3][4][5] are addressed: (1) Fix subrequest cancellation cleanup in DIO read and single-read. (2) Fix missing locking around retry adding new subrequests. (3) Fix read and write result collection to use barriering correctly to     access a request&apos;s subrequest lists without taking a lock.     This adds list_add_tail_release() and     list_first_entry_or_null_acquire() to appropriate incorporate     barriering into some list functions. (4) Fix netfs_read_to_pagecache() to pause on subrequest I/O failure. (5) Fix the potential for 64-bit tearing on a 32-bit machine when reading     netfs_inode-&gt;remote_i_size and -&gt;zero_point by using much the same     mechanism as is used for -&gt;i_size. (6) Fix the calculation of zero_point in netfs_release_folio() to limit it     to -&gt;remote_i_size, not -&gt;i_size. (7) Fix triggering of a VM_BUG_ON_FOLIO() in netfs_write_begin(). (8) Fix a potentially uninitialised error value in     netfs_extract_user_iter(). (9) Fix error handling in netfs_extract_user_iter().(10) Fix overrun checking in netfs_extract_user_iter().(11) Fix netfs_invalidate_folio() to clear the folio dirty bit if all dirty     data removed.(12) Defer the emission of trace_netfs_folio() in netfs_perform_write().     This allows the next patch to emit the correct traces.(13) Fix the handling of a partially failed copy (ie. EFAULT) into a     streaming write folio.  Also remove the netfs_folio if a streaming     write folio is entirely overwritten.(14) Fix a potential deadlock in writethrough writing.(15) Fix netfs_read_gaps() to remove the netfs_folio from a filled folio.(16) Fix netfs_perform_write() to not disable streaming writes when writing     to an fd that&apos;s open O_RDWR.(17) Fix an early put of the sink page used in netfs_read_gaps(), before     the request has completed.(18) Fix request leak in netfs_write_begin() error handling.(19) Fix a potential UAF in netfs_unlock_abandoned_read_pages() due to     trying to check index of each folio we&apos;re abandoning to see if that     folio is actually owned by the caller (in which case, we&apos;re not     actually allowed to dereference it).(20) Fix incorrect adjustment of dirty region when partially invalidating a     streaming write folio.(21) Fix the handling of folio-&gt;private in netfs_perform_write() and the     attached netfs_folio and/or group when a streaming write folio is     modified.(22) Fix netfs_read_folio() to wait on writeback first (it holds the folio     lock) otherwise we aren&apos;t allowed to look at the netfs_folio struct as     that could be modified at any time by the writeback collector.(23) Fix write skipping in dir/symlink writepages.(24) Fix the locking used by afs_get_link().[1] https://sashiko.dev/#/patchset/20260414082004.3756080-1-dhowells%40redhat.com[2] https://sashiko.dev/#/patchset/20260326104544.509518-1-dhowells%40redhat.com[3] https://sashiko.dev/#/patchset/20260425125426.3855807-1-dhowells%40redhat.com[4] https://sashiko.dev/#/patchset/20260427154639.180684-1-dhowells%40redhat.com[5] https://sashiko.dev/#/patchset/20260428131756.922303-1-dhowells%40redhat.com* patches from https://patch.msgid.link/20260512123404.719402-1-dhowells@redhat.com: (24 commits)  afs: Fix the locking used by afs_get_link()  netfs, afs: Fix write skipping in dir/link writepages  netfs: Fix netfs_read_folio() to wait on writeback  netfs: Fix folio-&gt;private handling in netfs_perform_write()  netfs: Fix partial invalidation of streaming-write folio  netfs: Fix potential UAF in netfs_unlock_abandoned_read_pages()  netfs: Fix leak of request in netfs_write_begin() error handling  netfs: Fix early put of sink folio in netfs_read_gaps()  netfs: Fix write streaming disablement if fd open O_RDWR  netfs: Fix read-gaps to remove netfs_folio from filled folio  netfs: Fix potential deadlock in write-through mode  netfs: Fix streaming write being overwritten  netfs: Defer the emission of trace_netfs_folio()  netfs: Fix netfs_invalidate_folio() to clear dirty bit if all changes gone  netfs: Fix overrun check in netfs_extract_user_iter()  netfs: fix error handling in netfs_extract_user_iter()  netfs: Fix potential uninitialised var in netfs_extract_user_iter()  netfs: fix VM_BUG_ON_FOLIO() issue in netfs_write_begin() call  netfs: Fix zeropoint update where i_size &gt; remote_i_size  netfs: Fix potential for tearing in -&gt;remote_i_size and -&gt;zero_point  ...Link: https://patch.msgid.link/20260512123404.719402-1-dhowells@redhat.comSigned-off-by: Christian Brauner &lt;brauner@kernel.org&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Tue, 12 May 2026 14:42:38 +0200</pubDate>
        <dc:creator>Christian Brauner &lt;brauner@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c0410adf3da6db46f3513411fcf95e63c2f1d1ad - afs: Fix the locking used by afs_get_link()</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#c0410adf3da6db46f3513411fcf95e63c2f1d1ad</link>
        <description>afs: Fix the locking used by afs_get_link()The afs filesystem in the kernel doesn&apos;t do locking correctly for symboliclinks.  There are a number of problems: (1) It doesn&apos;t do any locking around afs_read_single() to prevent races     between multiple -&gt;get_link() calls, thereby allowing the possibility     of leaks. (2) It doesn&apos;t use RCU barriering when accessing the buffer pointers     during RCU pathwalk. (3) It can race with another thread updating the contents of the symlink     if a third party updated it on the server.Fix this by the following means: (0) Move symlink handling into its own file as this makes it more     complicated. (1) Take the validate_lock around afs_read_single() to prevent races     between multiple -&gt;get_link() calls. (2) Keep a separate copy of the symlink contents with an rcu_head.  This     is always going to be a lot smaller than a page, so it can be     kmalloc&apos;d and save quite a bit of memory.  It also needs a refcount     for non-RCU pathwalk. (3) Split the symlink read and write-to-cache routines in afs from those     for directories. (4) Discard the I/O buffer as soon as the write-to-cache completes as this     is a full page (plus a folio_queue). (5) If there&apos;s no cache, discard the I/O buffer immediately after reading     and copying if there is no cache.Fixes: eae9e78951bb (&quot;afs: Use netfslib for symlinks, allowing them to be cached&quot;)Fixes: 6698c02d64b2 (&quot;afs: Locally initialise the contents of a new symlink on creation&quot;)Closes: https://sashiko.dev/#/patchset/20260326104544.509518-1-dhowells%40redhat.comSigned-off-by: David Howells &lt;dhowells@redhat.com&gt;Link: https://patch.msgid.link/20260512123404.719402-25-dhowells@redhat.comcc: Marc Dionne &lt;marc.dionne@auristor.com&gt;cc: linux-afs@lists.infradead.orgcc: linux-fsdevel@vger.kernel.orgSigned-off-by: Christian Brauner &lt;brauner@kernel.org&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Tue, 12 May 2026 14:34:01 +0200</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.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/fs/afs/Makefile#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/fs/afs/Makefile</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/fs/afs/Makefile#ab93e0dd72c37d378dd936f031ffb83ff2bd87ce</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.17 merge window.

            List of files:
            /linux/fs/afs/Makefile</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/fs/afs/Makefile#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/fs/afs/Makefile</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/fs/afs/Makefile#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/fs/afs/Makefile</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/fs/afs/Makefile#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/fs/afs/Makefile</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/fs/afs/Makefile#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/fs/afs/Makefile</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/fs/afs/Makefile#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/fs/afs/Makefile</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/fs/afs/Makefile#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/fs/afs/Makefile</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>5b38e821b929c23a3b7bfa2705cc7b0e76a3ee7b - Merge branch &apos;rxrpc-afs-add-afs-gssapi-security-class-to-af_rxrpc-and-kafs&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#5b38e821b929c23a3b7bfa2705cc7b0e76a3ee7b</link>
        <description>Merge branch &apos;rxrpc-afs-add-afs-gssapi-security-class-to-af_rxrpc-and-kafs&apos;David Howells says:====================rxrpc, afs: Add AFS GSSAPI security class to AF_RXRPC and kafsHere&apos;s a set of patches to add basic support for the AFS GSSAPI securityclass to AF_RXRPC and kafs.  It provides transport security for keys thatmatch the security index 6 (YFS) for connections to the AFS fileserver andVL server.Note that security index 4 (OpenAFS) can also be supported using this, butit needs more work as it&apos;s slightly different.The patches also provide the ability to secure the callback channel -connections from the fileserver back to the client that are used to passfile change notifications, amongst other things.  When challenged by thefileserver, kafs will generate a token specific to that server and includeit in the RESPONSE packet as the appdata.  The server then extracts thisand uses it to send callback RPC calls back to the client.It can also be used to provide transport security on the callback channel,but a further set of patches is required to provide the token and key toset that up when the client responds to the fileserver&apos;s challenge.This makes use of the previously added crypto-krb5 library that is nowupstream (last commit fc0cf10c04f4).This series of patches consist of the following parts: (0) Update kdoc comments to remove some kdoc builder warnings. (1) Push reponding to CHALLENGE packets over to recvmsg() or the kernel     equivalent so that the application layer can include user-defined     information in the RESPONSE packet.  In a follow-up patch set, this     will allow the callback channel to be secured by the AFS filesystem. (2) Add the AF_RXRPC RxGK security class that uses a key obtained from the     AFS GSS security service to do Kerberos 5-based encryption instead of     pcbc(fcrypt) and pcbc(des). (3) Add support for callback channel encryption in kafs. (4) Provide the test rxperf server module with some fixed krb5 keys.====================Link: https://patch.msgid.link/20250411095303.2316168-1-dhowells@redhat.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Tue, 15 Apr 2025 02:36:44 +0200</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5800b1cf3fd8ccab752a101865be1e76dac33142 - rxrpc: Allow CHALLENGEs to the passed to the app for a RESPONSE</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#5800b1cf3fd8ccab752a101865be1e76dac33142</link>
        <description>rxrpc: Allow CHALLENGEs to the passed to the app for a RESPONSEAllow the app to request that CHALLENGEs be passed to it through anout-of-band queue that allows recvmsg() to pick it up so that the app canadd data to it with sendmsg().This will allow the application (AFS or userspace) to interact with theprocess if it wants to and put values into user-defined fields.  This willbe used by AFS when talking to a fileserver to supply that fileserver witha crypto key by which callback RPCs can be encrypted (ie. notificationsfrom the fileserver to the client).Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;cc: Marc Dionne &lt;marc.dionne@auristor.com&gt;cc: Simon Horman &lt;horms@kernel.org&gt;cc: linux-afs@lists.infradead.orgLink: https://patch.msgid.link/20250411095303.2316168-5-dhowells@redhat.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Fri, 11 Apr 2025 11:52:49 +0200</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>1260ed77798502de9c98020040d2995008de10cc - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#1260ed77798502de9c98020040d2995008de10cc</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesBackmerging to get updates from v6.15-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Tue, 08 Apr 2025 10:15:47 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>946661e3bef8efa11ba8079d4ebafe6fc3b0aaad - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#946661e3bef8efa11ba8079d4ebafe6fc3b0aaad</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.15 merge window.

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Sat, 05 Apr 2025 08:04:35 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0b119045b79a672bc6d8f18641c60fc8ce1b4585 - Merge tag &apos;v6.14-rc4&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#0b119045b79a672bc6d8f18641c60fc8ce1b4585</link>
        <description>Merge tag &apos;v6.14-rc4&apos; into nextSync up with the mainline.

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Wed, 26 Feb 2025 01:03:25 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9e676a024fa1fa2bd8150c2d2ba85478280353bc - Merge tag &apos;v6.14-rc1&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#9e676a024fa1fa2bd8150c2d2ba85478280353bc</link>
        <description>Merge tag &apos;v6.14-rc1&apos; into perf-tools-nextTo get the various fixes in the current master.Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 23:57:18 +0100</pubDate>
        <dc:creator>Namhyung Kim &lt;namhyung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0410c6121529409b08e81a77ae3ee58c657e2243 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#0410c6121529409b08e81a77ae3ee58c657e2243</link>
        <description>Merge drm/drm-next into drm-xe-nextSync to fix conlicts between drm-xe-next and drm-intel-next.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Fri, 28 Feb 2025 15:54:14 +0100</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>93c7dd1b39444ebd5a6a98e56a363d7a4e646775 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#93c7dd1b39444ebd5a6a98e56a363d7a4e646775</link>
        <description>Merge drm/drm-next into drm-misc-nextBring rc1 to start the new release dev.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Thu, 06 Feb 2025 13:47:32 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ea9f8f2b21795a5d80418a655bcb212d5b89e08f - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/afs/Makefile#ea9f8f2b21795a5d80418a655bcb212d5b89e08f</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v6.14-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/fs/afs/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 18:12:37 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
