<?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>7e0e7bd60d4a812b694c477716597fcb038b00cb - Merge tag &apos;vfs-7.2-rc1.misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#7e0e7bd60d4a812b694c477716597fcb038b00cb</link>
        <description>Merge tag &apos;vfs-7.2-rc1.misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsPull misc vfs updates from Christian Brauner: &quot;Features:   - Reduce pipe-&gt;mutex contention by pre-allocating pages outside the     lock in anon_pipe_write().     anon_pipe_write() called alloc_page() once per page while holding     pipe-&gt;mutex. The allocation can sleep doing direct reclaim and runs     memcg charging, which extends the critical section and stalls any     concurrent reader on the same mutex. Now up to 8 pages are     pre-allocated before the mutex is taken, leftovers are recycled     into the per-pipe tmp_page[] cache before unlock, and any remainder     is released after unlock, keeping the allocator out of the critical     section on both sides. On a writers x readers sweep with 64KB     writes against a 1 MB pipe throughput improves 6-28% and average     write latency drops 5-22%; under memory pressure - when the cost of     holding the mutex across reclaim is highest - throughput improves     21-48% and latency drops 17-33%. The microbenchmark is added to     selftests.   - uaccess/sockptr: fix the ignored_trailing logic in     copy_struct_to_user() to behave as documented and the usize check     in copy_struct_from_sockptr() for user pointers, and add     copy_struct_{from,to}_bounce_buffer() and copy_struct_to_sockptr()     helpers for upcoming users (IPPROTO_SMBDIRECT, IPPROTO_QUIC).   - bpf: add a sleepable bpf_real_inode() kfunc that resolves the real     inode backing a dentry via d_real_inode(). On overlayfs the inode     attached to the dentry doesn&apos;t carry the underlying device     information; this is used by the filesystem restriction BPF program     that was merged into systemd.   - docs: add guidelines for submitting new filesystems, motivated by     the maintenance burden abandoned and untestable filesystems impose     on VFS developers, blocking infrastructure work like folio     conversions and iomap migration.  Fixes:   - libfs: set SB_I_NOEXEC and SB_I_NODEV by default in init_pseudo()     and drop the now-redundant assignments in callers. This began as a     one-line dma-buf fix for a path_noexec() warning; a pseudo     filesystem has no reason not to set SB_I_NOEXEC. All init_pseudo()     callers were audited: the only visible effect is on dma-buf where     SB_I_NOEXEC silences the warning.   - Handle set_blocksize() failures in legacy filesystems (bfs, hpfs,     qnx4, jfs, befs, affs, isofs, minix, ntfs3, omfs). Mounting a     device with a sector size &gt; PAGE_SIZE crashed roughly half of them;     the rest had the same missing error handling pattern. Plus a     follow-up releasing the superblock buffer_head when setting the     minix v3 block size fails.   - mount: honour SB_NOUSER in the new mount API.   - fs/fcntl: fix a SOFTIRQ-unsafe lock order in fasync signaling by     switching the process-group paths of send_sigio() and send_sigurg()     from read_lock(&amp;tasklist_lock) to RCU, matching the single-PID     path.   - vfs: add an FS_USERNS_DELEGATABLE flag and set it for NFS, fixing     delegated NFS mounts (fsopen() in a container with the mount     performed by a privileged daemon) that broke when non-init     s_user_ns was tied to FS_USERNS_MOUNT.   - selftests/namespaces: fix a hang in nsid_test where an unreaped     grandchild kept the TAP pipe write-end open, a waitpid(-1) race in     listns_efault_test, and a false FAIL on kernels without listns()     where the tests should SKIP.   - filelock: fix the break_lease() stub signature for     CONFIG_FILE_LOCKING=n.   - init/initramfs_test: wait for the async initramfs unpacking before     running; the test and do_populate_rootfs() share the parser state.   - fs/coredump: reduce redundant log noise in     validate_coredump_safety().   - iomap: pass the correct length to fserror_report_io() in     __iomap_write_begin().   - backing-file: fix the backing_file_open() kerneldoc.  Cleanups:   - initramfs: refactor the cpio hex header parsing to use hex2bin()     instead of the hand-rolled simple_strntoul() which is reverted, and     extend the initramfs KUnit tests to cover header fields with 0x     prefixes.   - Replace __get_free_pages() and friends with kmalloc()/kzalloc()     across quota, proc, ocfs2/dlm, nilfs2, nfs, nfsd, libfs, jfs, jbd2,     isofs, fuse, select, namespace, configfs, binfmt_misc, bfs, and the     do_mounts init code - part of the larger work of replacing page     allocator calls with kmalloc().   - Use clear_and_wake_up_bit() in unlock_buffer() and     journal_end_buffer_io_sync() instead of open-coding the sequence.   - Drop unused VFS exports: unexport drop_super_exclusive(), remove     start_removing_user_path_at(), and fold __start_removing_path()     into start_removing_path().   - fs/read_write: narrow the __kernel_write() export with     EXPORT_SYMBOL_FOR_MODULES().   - vfs: uapi: retire octal and hex constants in favor of (1 &lt;&lt; n) for     the O_ flags. Finding a free bit for a new flag across the     architectures was needlessly hard with the mixed bases.   - dcache: add extra sanity checks of dead dentries in dentry_free()     via a new DENTRY_WARN_ONCE() that also prints d_flags.   - iov_iter: use kmemdup_array() in dup_iter() to harden the     allocation against multiplication overflow.   - fs/pipe: write to -&gt;poll_usage only once.   - vfs: remove an always-taken if-branch in find_next_fd().   - dcache: use kmalloc_flex() for struct external_name in __d_alloc().   - namei: use QSTR() instead of QSTR_INIT() in path_pts().   - sync_file_range: delete dead S_ISLNK code.   - Comment fixes: retire a stale comment in fget_task_next() and fix     assorted spelling mistakes&quot;* tag &apos;vfs-7.2-rc1.misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: (73 commits)  backing-file: fix backing_file_open() kerneldoc parameter  iomap: pass the correct len to fserror_report_io in __iomap_write_begin  vfs: add FS_USERNS_DELEGATABLE flag and set it for NFS  filelock: fix break_lease() stub signature for CONFIG_FILE_LOCKING=n  vfs: uapi: retire octal and hex numbers in favor of (1 &lt;&lt; n) for O_ flags  bpf: add bpf_real_inode() kfunc  fs/read_write: Do not export __kernel_write() to the entire world  libfs: drop redundant SB_I_NOEXEC/SB_I_NODEV in init_pseudo() callers  libfs: set SB_I_NOEXEC and SB_I_NODEV by default in init_pseudo()  mount: honour SB_NOUSER in the new mount API  fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling  selftests/pipe: add pipe_bench microbenchmark  fs/pipe: pre-allocate pages outside pipe-&gt;mutex in anon_pipe_write  fs: retire stale comment in fget_task_next()  fs: fix spelling mistakes in comment  bfs: replace get_zeroed_page() with kzalloc()  binfmt_misc: replace __get_free_page() with kmalloc()  configfs: replace __get_free_pages() with kzalloc()  fs/namespace: use __getname() to allocate mntpath buffer  fs/select: replace __get_free_page() with kmalloc()  ...

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Mon, 15 Jun 2026 00:29:45 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d29bd8efe16239608b60173a7e8d842bcbfcd9e9 - selftests/pipe: add pipe_bench microbenchmark</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#d29bd8efe16239608b60173a7e8d842bcbfcd9e9</link>
        <description>selftests/pipe: add pipe_bench microbenchmarkAdd a small selftest that stresses pipe-&gt;mutex contention by spawning Nwriter threads that hammer a single pipe with multi-page writes, plus Mreader threads that drain. Each writer records its own write() latencysamples into a log2-bucketed histogram; main aggregates and printstotal writes, throughput, average and percentile (p50/p99) latencies,and the maximum observed latency.Pass --memory-pressure to fork stress-ng (--vm 4 --vm-bytes 80%--vm-method all) for the duration of the run, so alloc_page() inanon_pipe_write() routinely hits direct reclaim. The flag failsfast if stress-ng is not on $PATH.Program print something like the following, for different writes,readers, msgsizes and memory pressure:	config: writers=X readers=Y msgsize=Z duration=3 pipe_size=1048576	memory_pressure=[no|yes]	writes: total=54451 rate=18150/s	throughput_MBps: 1134.40	lat_avg_ns: 275355	lat_p50_ns_upper: 262143	lat_p99_ns_upper: 1048575	lat_max_ns: 2145633Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Breno Leitao &lt;leitao@debian.org&gt;Link: https://patch.msgid.link/20260524-fix_pipe-v3-2-bb4a75d23a90@debian.orgSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Sun, 24 May 2026 16:44:59 +0200</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>77d1a2d2318fa96f8a662c9ad6647abedcd22734 - selftests: Fix Makefile target for nsfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#77d1a2d2318fa96f8a662c9ad6647abedcd22734</link>
        <description>selftests: Fix Makefile target for nsfsThe kselftests for nsfs where moved under filesystem/ withcommit cae73d3bdce5 (&quot;seltests: move nsfs into filesystemssubfolder&quot;). However, the kselftest TARGETS declaration was notadjusted.Since the kselftest Makefile ignores errors unless no target builds,the invalid target declaration can easily be missed.Fix this by adjusting the TARGETS accordingly.Fixes: cae73d3bdce5 (&quot;seltests: move nsfs into filesystems subfolder&quot;)Signed-off-by: Florian Schmaus &lt;flo@geekplace.eu&gt;Link: https://patch.msgid.link/20260526-kselftest-nsfs-v1-1-7b042ebe42d6@geekplace.euSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Tue, 26 May 2026 10:01:08 +0200</pubDate>
        <dc:creator>Florian Schmaus &lt;flo@geekplace.eu&gt;</dc:creator>
    </item>
<item>
        <title>f154634e42f724a3444694273e396f0a62fef3f1 - Merge tag &apos;linux_kselftest-next-7.1-next-fixes&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#f154634e42f724a3444694273e396f0a62fef3f1</link>
        <description>Merge tag &apos;linux_kselftest-next-7.1-next-fixes&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftestPull kselftest fixes from Shuah Khan: &quot;Fix regressions in non-bash shells and busybox support, and revert a  commit that regressed in build and installation when one or more tests  fail to build.  Fix duplicated test number reporting introduced in ktap support patch&quot;* tag &apos;linux_kselftest-next-7.1-next-fixes&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:  selftests: Fix duplicated test number reporting  selftests: Fix runner.sh for non-bash shells  selftests: Fix runner.sh busybox support  selftests: Deescalate error reporting

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Tue, 21 Apr 2026 02:19:30 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4b0b946019e7376752456380b67e54eea2f10a7c - Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#4b0b946019e7376752456380b67e54eea2f10a7c</link>
        <description>Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdmaPull rdma updates from Jason Gunthorpe: &quot;The usual collection of driver changes, more core infrastructure  updates that typical this cycle:   - Minor cleanups and kernel-doc fixes in bnxt_re, hns, rdmavt, efa,     ocrdma, erdma, rtrs, hfi1, ionic, and pvrdma   - New udata validation framework and driver updates   - Modernize CQ creation interface in mlx4 and mlx5, manage CQ umem in     core   - Promote UMEM to a core component, split out DMA block iterator     logic   - Introduce FRMR pools with aging, statistics, pinned handles, and     netlink control and use it in mlx5   - Add PCIe TLP emulation support in mlx5   - Extend umem to work with revocable pinned dmabuf&apos;s and use it in     irdma   - More net namespace improvements for rxe   - GEN4 hardware support in irdma   - First steps to MW and UC support in mana_ib   - Support for CQ umem and doorbells in bnxt_re   - Drop opa_vnic driver from hfi1  Fixes:   - IB/core zero dmac neighbor resolution race   - GID table memory free   - rxe pad/ICRC validation and r_key async errors   - mlx4 external umem for CQ   - umem DMA attributes on unmap   - mana_ib RX steering on RSS QP destroy&quot;* tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma: (116 commits)  RDMA/core: Fix user CQ creation for drivers without create_cq  RDMA/ionic: bound node_desc sysfs read with %.64s  IB/core: Fix zero dmac race in neighbor resolution  RDMA/mana_ib: Support memory windows  RDMA/rxe: Validate pad and ICRC before payload_size() in rxe_rcv  RDMA/core: Prefer NLA_NUL_STRING  RDMA/core: Fix memory free for GID table  RDMA/hns: Remove the duplicate calls to ib_copy_validate_udata_in()  RDMA: Remove redundant = {} for udata req structs  RDMA/irdma: Add missing comp_mask check in alloc_ucontext  RDMA/hns: Add missing comp_mask check in create_qp  RDMA/mlx5: Pull comp_mask validation into ib_copy_validate_udata_in_cm()  RDMA: Use ib_copy_validate_udata_in_cm() for zero comp_mask  RDMA/hns: Use ib_copy_validate_udata_in()  RDMA/mlx4: Use ib_copy_validate_udata_in() for QP  RDMA/mlx4: Use ib_copy_validate_udata_in()  RDMA/mlx5: Use ib_copy_validate_udata_in() for MW  RDMA/mlx5: Use ib_copy_validate_udata_in() for SRQ  RDMA/pvrdma: Use ib_copy_validate_udata_in() for srq  RDMA: Use ib_copy_validate_udata_in() for implicit full structs  ...

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 20:20:35 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>cad6f32665cbff8e556a1da035e55261f7374ebd - selftests: Deescalate error reporting</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#cad6f32665cbff8e556a1da035e55261f7374ebd</link>
        <description>selftests: Deescalate error reportingCommit 7e47389142b8 (&quot;selftests: Preserve subtarget failures inall/install&quot;) updated the propagation of errors from indivdual kselftesttargets to be similar to that seen with FORCE_TARGETS.  While it wouldbe really nice to be in a position to do this currently it is prematureto do this as the default behaviour.At present we default to trying to build all selftests but a combinationof code quality issues and build dependencies mean that it is almostcertain that at least one of them will fail to build (for example,several depend on clang so don&apos;t work in a GCC container) and a toplevel failure in the kselftest build reported.  Further, the resultingfailures mean that the install target does not run at all so any buildproblem is escallated to a complete failure to produce a kselftesttarball so CI systems that run into issues loose all selftests coverage.This has been causing disruption to a range of CI systems includingKernelCI, mine and Arm&apos;s internal one.Revert the commit, users who need this behaviour should be able to useFORCE_TARGETS for the time being.  At present users that do this (suchas linux-next) are most likely building a subset of targets known tosucceed in their environments.Link: https://lore.kernel.org/r/20260416-selftests-deescalate-error-reporting-v1-1-38e7c0536227@kernel.orgFixes: 7e47389142b8 (&quot;selftests: Preserve subtarget failures in all/install&quot;)Signed-off-by: Mark Brown &lt;broonie@kernel.org&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Thu, 16 Apr 2026 15:19:24 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7c8a4671dc3247a26a702e5f5996e9f453d7070d - Merge tag &apos;vfs-7.1-rc1.mount.v2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#7c8a4671dc3247a26a702e5f5996e9f453d7070d</link>
        <description>Merge tag &apos;vfs-7.1-rc1.mount.v2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsPull vfs mount updates from Christian Brauner: - Add FSMOUNT_NAMESPACE flag to fsmount() that creates a new mount   namespace with the newly created filesystem attached to a copy of the   real rootfs. This returns a namespace file descriptor instead of an   O_PATH mount fd, similar to how OPEN_TREE_NAMESPACE works for   open_tree().   This allows creating a new filesystem and immediately placing it in a   new mount namespace in a single operation, which is useful for   container runtimes and other namespace-based isolation mechanisms.   This accompanies OPEN_TREE_NAMESPACE and avoids a needless detour via   OPEN_TREE_NAMESPACE to get the same effect. Will be especially useful   when you mount an actual filesystem to be used as the container   rootfs. - Currently, creating a new mount namespace always copies the entire   mount tree from the caller&apos;s namespace. For containers and sandboxes   that intend to build their mount table from scratch this is wasteful:   they inherit a potentially large mount tree only to immediately tear   it down.   This series adds support for creating a mount namespace that contains   only a clone of the root mount, with none of the child mounts. Two   new flags are introduced:     - CLONE_EMPTY_MNTNS (0x400000000) for clone3(), using the 64-bit flag space     - UNSHARE_EMPTY_MNTNS (0x00100000) for unshare()   Both flags imply CLONE_NEWNS. The resulting namespace contains a   single nullfs root mount with an immutable empty directory. The   intended workflow is to then mount a real filesystem (e.g., tmpfs)   over the root and build the mount table from there. - Allow MOVE_MOUNT_BENEATH to target the caller&apos;s rootfs, allowing to   switch out the rootfs without pivot_root(2).   The traditional approach to switching the rootfs involves   pivot_root(2) or a chroot_fs_refs()-based mechanism that atomically   updates fs-&gt;root for all tasks sharing the same fs_struct. This has   consequences for fork(), unshare(CLONE_FS), and setns().   This series instead decomposes root-switching into individually   atomic, locally-scoped steps:	fd_tree = open_tree(-EBADF, &quot;/newroot&quot;, OPEN_TREE_CLONE | OPEN_TREE_CLOEXEC);	fchdir(fd_tree);	move_mount(fd_tree, &quot;&quot;, AT_FDCWD, &quot;/&quot;, MOVE_MOUNT_BENEATH | MOVE_MOUNT_F_EMPTY_PATH);	chroot(&quot;.&quot;);	umount2(&quot;.&quot;, MNT_DETACH);   Since each step only modifies the caller&apos;s own state, the   fork/unshare/setns races are eliminated by design.   A key step to making this possible is to remove the locked mount   restriction. Originally MOVE_MOUNT_BENEATH doesn&apos;t support mounting   beneath a mount that is locked. The locked mount protects the   underlying mount from being revealed. This is a core mechanism of   unshare(CLONE_NEWUSER | CLONE_NEWNS). The mounts in the new mount   namespace become locked. That effectively makes the new mount table   useless as the caller cannot ever get rid of any of the mounts no   matter how useless they are.   We can lift this restriction though. We simply transfer the locked   property from the top mount to the mount beneath. This works because   what we care about is to protect the underlying mount aka the parent.   The mount mounted between the parent and the top mount takes over the   job of protecting the parent mount from the top mount mount. This   leaves us free to remove the locked property from the top mount which   can consequently be unmounted:	unshare(CLONE_NEWUSER | CLONE_NEWNS)   and we inherit a clone of procfs on /proc then currently we cannot   unmount it as:	umount -l /proc   will fail with EINVAL because the procfs mount is locked.   After this series we can now do:	mount --beneath -t tmpfs tmpfs /proc	umount -l /proc   after which a tmpfs mount has been placed beneath the procfs mount.   The tmpfs mount has become locked and the procfs mount has become   unlocked.   This means you can safely modify an inherited mount table after   unprivileged namespace creation.   Afterwards we simply make it possible to move a mount beneath the   rootfs allowing to upgrade the rootfs.   Removing the locked restriction makes this very useful for containers   created with unshare(CLONE_NEWUSER | CLONE_NEWNS) to reshuffle an   inherited mount table safely and MOVE_MOUNT_BENEATH makes it possible   to switch out the rootfs instead of using the costly pivot_root(2).* tag &apos;vfs-7.1-rc1.mount.v2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs:  selftests/namespaces: remove unused utils.h include from listns_efault_test  selftests/fsmount_ns: add missing TARGETS and fix cap test  selftests/empty_mntns: fix wrong CLONE_EMPTY_MNTNS hex value in comment  selftests/empty_mntns: fix statmount_alloc() signature mismatch  selftests/statmount: remove duplicate wait_for_pid()  mount: always duplicate mount  selftests/filesystems: add MOVE_MOUNT_BENEATH rootfs tests  move_mount: allow MOVE_MOUNT_BENEATH on the rootfs  move_mount: transfer MNT_LOCKED  selftests/filesystems: add clone3 tests for empty mount namespaces  selftests/filesystems: add tests for empty mount namespaces  namespace: allow creating empty mount namespaces  selftests: add FSMOUNT_NAMESPACE tests  selftests/statmount: add statmount_alloc() helper  tools: update mount.h header  mount: add FSMOUNT_NAMESPACE  mount: simplify __do_loopback()  mount: start iterating from start of rbtree

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Wed, 15 Apr 2026 04:59:25 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&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/tools/testing/selftests/Makefile#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/tools/testing/selftests/Makefile</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>660c09404cdabfe969d58375e990d2955af59797 - selftests/fsmount_ns: add missing TARGETS and fix cap test</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#660c09404cdabfe969d58375e990d2955af59797</link>
        <description>selftests/fsmount_ns: add missing TARGETS and fix cap testAdd missing top-level kselftest TARGETS entries for empty_mntns andfsmount_ns so that &apos;make kselftest&apos; discovers and runs these tests.Fix requires_cap_sys_admin test which always SKIPped because fsopen()was called after enter_userns(), where CAP_SYS_ADMIN in the mountnamespace&apos;s user_ns is unavailable. Move fsopen/fsconfig before fork sothe configured fs_fd is inherited by the child, which then only needs tocall fsmount() after dropping privileges.Fixes: 3ac7ea91f3d0 (&quot;selftests: add FSMOUNT_NAMESPACE tests&quot;)Signed-off-by: Christian Brauner &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Mon, 23 Mar 2026 17:41:08 +0100</pubDate>
        <dc:creator>Christian Brauner &lt;brauner@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7e47389142b8ada66280be71e01a3238751086f0 - selftests: Preserve subtarget failures in all/install</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#7e47389142b8ada66280be71e01a3238751086f0</link>
        <description>selftests: Preserve subtarget failures in all/installTrack failures explicitly in the top-level selftests all/install loops.The current code multiplies `ret` by each sub-make exit status. Forexample, with `TARGETS=net`, the implicit `net/lib` dependency runs after`net`, so a failed `net` build can be followed by a successful `net/lib`build and reset the final result to success.Set `ret` to 1 on any non-zero sub-make exit code and keep it sticky, sothe top-level make returns failure when any selected selftest targetfails.Signed-off-by: Ricardo B. Marli&#232;re &lt;rbm@suse.com&gt;Link: https://lore.kernel.org/r/20260320-selftests-fixes-v1-5-79144f76be01@suse.comSigned-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Fri, 20 Mar 2026 19:29:20 +0100</pubDate>
        <dc:creator>Ricardo B. Marli&#232;re &lt;rbm@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>dfecb0c5af3b07ebfa84be63a7a21bfc9e29a872 - selftests: net: add tests for PPP</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#dfecb0c5af3b07ebfa84be63a7a21bfc9e29a872</link>
        <description>selftests: net: add tests for PPPAdd ping and iperf3 tests for ppp_async.c and pppoe.c.Signed-off-by: Qingfang Deng &lt;qingfang.deng@linux.dev&gt;Link: https://patch.msgid.link/20260403034908.30017-1-qingfang.deng@linux.devSigned-off-by: Paolo Abeni &lt;pabeni@redhat.com&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Fri, 03 Apr 2026 05:48:47 +0200</pubDate>
        <dc:creator>Qingfang Deng &lt;qingfang.deng@linux.dev&gt;</dc:creator>
    </item>
<item>
        <title>e01027cab38a1a52828eecff447ca5e015b20f92 - RDMA/rxe: Add testcase for net namespace rxe</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#e01027cab38a1a52828eecff447ca5e015b20f92</link>
        <description>RDMA/rxe: Add testcase for net namespace rxeAdd 4 testcases for rxe with net namespace.Reviewed-by: David Ahern &lt;dsahern@kernel.org&gt;Signed-off-by: Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;Link: https://patch.msgid.link/20260313023058.13020-5-yanjun.zhu@linux.devSigned-off-by: Leon Romanovsky &lt;leon@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Fri, 13 Mar 2026 03:30:58 +0100</pubDate>
        <dc:creator>Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;</dc:creator>
    </item>
<item>
        <title>bb5c17bc863d1ac9ee0d51d300d5399d632fe69f - selftests/filesystems: add MOVE_MOUNT_BENEATH rootfs tests</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#bb5c17bc863d1ac9ee0d51d300d5399d632fe69f</link>
        <description>selftests/filesystems: add MOVE_MOUNT_BENEATH rootfs testsAdd tests for mounting beneath the rootfs using MOVE_MOUNT_BENEATH:- beneath_rootfs_success: mount beneath /, fchdir, chroot, umount2  MNT_DETACH -- verify root changed- beneath_rootfs_old_root_stacked: after mount-beneath, verify old root  parent is clone via statmount- beneath_rootfs_in_chroot_fail: chroot into subdir of same mount,  mount-beneath fails (dentry != mnt_root)- beneath_rootfs_in_chroot_success: chroot into separate tmpfs mount,  mount-beneath succeeds- beneath_rootfs_locked_transfer: in user+mount ns: mount-beneath  rootfs succeeds, MNT_LOCKED transfers, old root unmountable- beneath_rootfs_locked_containment: in user+mount ns: after full  root-switch workflow, new root is MNT_LOCKED (containment preserved)- beneath_non_rootfs_locked_transfer: mounts created before  unshare(CLONE_NEWUSER | CLONE_NEWNS) become locked; mount-beneath  transfers MNT_LOCKED, displaced mount can be unmounted- beneath_non_rootfs_locked_containment: same setup, verify new mount  is MNT_LOCKED (containment preserved)Link: https://patch.msgid.link/20260224-work-mount-beneath-rootfs-v1-3-8c58bf08488f@kernel.orgSigned-off-by: Christian Brauner &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Tue, 24 Feb 2026 01:40:28 +0100</pubDate>
        <dc:creator>Christian Brauner &lt;brauner@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b3827c91cc9979fe04d99e016fb9c5f6260f29a0 - netconsole: selftests: Move netconsole selftests to separate target</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#b3827c91cc9979fe04d99e016fb9c5f6260f29a0</link>
        <description>netconsole: selftests: Move netconsole selftests to separate targetThis patch moves netconsole selftests from drivers/net to its own targetin drivers/net/netconsole.This change helps saving some resources from CI since tests indrivers/net automatically run against real hardware which are not usedby netconsole tests as they rely solely on netdevsim.lib_netcons.sh is kept under drivers/net/lib since it is also used bybonding selftests. Finally, drivers/net config remains unchanged asnetpoll_basic.py requires netconsole (and does leverage real HW testing).Reviewed-by: Breno Leitao &lt;leitao@debian.org&gt;Signed-off-by: Andre Carvalho &lt;asantostc@gmail.com&gt;Link: https://patch.msgid.link/20260127-netcons-selftest-target-v2-1-f509ab65b3bc@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Tue, 27 Jan 2026 20:39:20 +0100</pubDate>
        <dc:creator>Andre Carvalho &lt;asantostc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>80bab43f6f235664fff2d3518b3901ba9c4ac5a3 - selftests/liveupdate: add userspace API selftests</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#80bab43f6f235664fff2d3518b3901ba9c4ac5a3</link>
        <description>selftests/liveupdate: add userspace API selftestsIntroduce a selftest suite for LUO.  These tests validate the coreuserspace-facing API provided by the /dev/liveupdate device and itsassociated ioctls.The suite covers fundamental device behavior, session management, and thefile preservation mechanism using memfd as a test case.  This providesregression testing for the LUO uAPI.The following functionality is verified:Device Access:    Basic open and close operations on /dev/liveupdate.    Enforcement of exclusive device access (verifying EBUSY on a    second open).Session Management:    Successful creation of sessions with unique names.    Failure to create sessions with duplicate names.File Preservation:    Preserving a single memfd and verifying its content remains    intact post-preservation.    Preserving multiple memfds within a single session, each with    unique data.    A complex scenario involving multiple sessions, each containing    a mix of empty and data-filled memfds.Note: This test suite is limited to verifying the pre-kexec functionalityof LUO (e.g., session creation, file preservation).  The post-kexecrestoration of resources is not covered, as the kselftest framework doesnot currently support orchestrating a reboot and continuing execution inthe new kernel.Link: https://lkml.kernel.org/r/20251125165850.3389713-17-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Reviewed-by: Pratyush Yadav &lt;pratyush@kernel.org&gt;Reviewed-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Tested-by: David Matlack &lt;dmatlack@google.com&gt;Cc: Aleksander Lobakin &lt;aleksander.lobakin@intel.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: Alice Ryhl &lt;aliceryhl@google.com&gt;Cc: Andriy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: anish kumar &lt;yesanishhere@gmail.com&gt;Cc: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;Cc: Bartosz Golaszewski &lt;bartosz.golaszewski@linaro.org&gt;Cc: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Cc: Borislav Betkov &lt;bp@alien8.de&gt;Cc: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;Cc: Chen Ridong &lt;chenridong@huawei.com&gt;Cc: Chris Li &lt;chrisl@kernel.org&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: Daniel Wagner &lt;wagi@kernel.org&gt;Cc: Danilo Krummrich &lt;dakr@kernel.org&gt;Cc: Dan Williams &lt;dan.j.williams@intel.com&gt;Cc: David Hildenbrand &lt;david@redhat.com&gt;Cc: David Jeffery &lt;djeffery@redhat.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: Guixin Liu &lt;kanie@linux.alibaba.com&gt;Cc: &quot;H. Peter Anvin&quot; &lt;hpa@zytor.com&gt;Cc: Hugh Dickins &lt;hughd@google.com&gt;Cc: Ilpo J&#228;rvinen &lt;ilpo.jarvinen@linux.intel.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Ira Weiny &lt;ira.weiny@intel.com&gt;Cc: Jann Horn &lt;jannh@google.com&gt;Cc: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Cc: Jens Axboe &lt;axboe@kernel.dk&gt;Cc: Joanthan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Cc: Joel Granados &lt;joel.granados@kernel.org&gt;Cc: Johannes Weiner &lt;hannes@cmpxchg.org&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Lennart Poettering &lt;lennart@poettering.net&gt;Cc: Leon Romanovsky &lt;leon@kernel.org&gt;Cc: Leon Romanovsky &lt;leonro@nvidia.com&gt;Cc: Lukas Wunner &lt;lukas@wunner.de&gt;Cc: Marc Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Matthew Maurer &lt;mmaurer@google.com&gt;Cc: Miguel Ojeda &lt;ojeda@kernel.org&gt;Cc: Myugnjoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Parav Pandit &lt;parav@nvidia.com&gt;Cc: Pratyush Yadav &lt;ptyadav@amazon.de&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Roman Gushchin &lt;roman.gushchin@linux.dev&gt;Cc: Saeed Mahameed &lt;saeedm@nvidia.com&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Steven Rostedt &lt;rostedt@goodmis.org&gt;Cc: Stuart Hayes &lt;stuart.w.hayes@gmail.com&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Thomas Gleinxer &lt;tglx@linutronix.de&gt;Cc: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Cc: Vincent Guittot &lt;vincent.guittot@linaro.org&gt;Cc: William Tu &lt;witu@nvidia.com&gt;Cc: Yoann Congal &lt;yoann.congal@smile.fr&gt;Cc: Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;Cc: Zijun Hu &lt;quic_zijuhu@quicinc.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Tue, 25 Nov 2025 17:58:46 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>55a42f78ffd386e01a5404419f8c5ded7db70a21 - Merge tag &apos;vfio-v6.18-rc1&apos; of https://github.com/awilliam/linux-vfio</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#55a42f78ffd386e01a5404419f8c5ded7db70a21</link>
        <description>Merge tag &apos;vfio-v6.18-rc1&apos; of https://github.com/awilliam/linux-vfioPull VFIO updates from Alex Williamson: - Use fdinfo to expose the sysfs path of a device represented by a vfio   device file (Alex Mastro) - Mark vfio-fsl-mc, vfio-amba, and the reset functions for   vfio-platform for removal as these are either orphaned or believed to   be unused (Alex Williamson) - Add reviewers for vfio-platform to save it from also being marked for   removal (Mostafa Saleh, Pranjal Shrivastava) - VFIO selftests, including basic sanity testing and minimal userspace   drivers for testing against real hardware. This is also expected to   provide integration with KVM selftests for KVM-VFIO interfaces (David   Matlack, Josh Hilke) - Fix drivers/cdx and vfio/cdx to build without CONFIG_GENERIC_MSI_IRQ   (Nipun Gupta) - Fix reference leak in hisi_acc (Miaoqian Lin) - Use consistent return for unsupported device feature (Alex Mastro) - Unwind using the correct memory free callback in vfio/pds (Zilin   Guan) - Use IRQ_DISABLE_LAZY flag to improve handling of pre-PCI2.3 INTx and   resolve stalled interrupt on ppc64 (Timothy Pearson) - Enable GB300 in nvgrace-gpu vfio-pci variant driver (Tushar Dave) - Misc:    - Drop unnecessary ternary conversion in vfio/pci (Xichao Zhao)    - Grammatical fix in nvgrace-gpu (Morduan Zang)    - Update Shameer&apos;s email address (Shameer Kolothum)    - Fix document build warning (Alex Williamson)* tag &apos;vfio-v6.18-rc1&apos; of https://github.com/awilliam/linux-vfio: (48 commits)  vfio/nvgrace-gpu: Add GB300 SKU to the devid table  vfio/pci: Fix INTx handling on legacy non-PCI 2.3 devices  vfio/pds: replace bitmap_free with vfree  vfio: return -ENOTTY for unsupported device feature  hisi_acc_vfio_pci: Fix reference leak in hisi_acc_vfio_debug_init  vfio/platform: Mark reset drivers for removal  vfio/amba: Mark for removal  MAINTAINERS: Add myself as VFIO-platform reviewer  MAINTAINERS: Add myself as VFIO-platform reviewer  docs: proc.rst: Fix VFIO Device title formatting  vfio: selftests: Fix .gitignore for already tracked files  vfio/cdx: update driver to build without CONFIG_GENERIC_MSI_IRQ  cdx: don&apos;t select CONFIG_GENERIC_MSI_IRQ  MAINTAINERS: Update Shameer Kolothum&apos;s email address  vfio: selftests: Add a script to help with running VFIO selftests  vfio: selftests: Make iommufd the default iommu_mode  vfio: selftests: Add iommufd mode  vfio: selftests: Add iommufd_compat_type1{,v2} modes  vfio: selftests: Add vfio_type1v2_mode  vfio: selftests: Replicate tests across all iommu_modes  ...

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Sat, 04 Oct 2025 17:24:54 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>6238729bfce13f94b701766996a5d116d2df8bff - Merge tag &apos;fuse-update-6.18&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#6238729bfce13f94b701766996a5d116d2df8bff</link>
        <description>Merge tag &apos;fuse-update-6.18&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fusePull fuse updates from Miklos Szeredi: - Extend copy_file_range interface to be fully 64bit capable (Miklos) - Add selftest for fusectl (Chen Linxuan) - Move fuse docs into a separate directory (Bagas Sanjaya) - Allow fuse to enter freezable state in some cases (Sergey   Senozhatsky) - Clean up writeback accounting after removing tmp page copies (Joanne) - Optimize virtiofs request handling (Li RongQing) - Add synchronous FUSE_INIT support (Miklos) - Allow server to request prune of unused inodes (Miklos) - Fix deadlock with AIO/sync release (Darrick) - Add some prep patches for block/iomap support (Darrick) - Misc fixes and cleanups* tag &apos;fuse-update-6.18&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse: (26 commits)  fuse: move CREATE_TRACE_POINTS to a separate file  fuse: move the backing file idr and code into a new source file  fuse: enable FUSE_SYNCFS for all fuseblk servers  fuse: capture the unique id of fuse commands being sent  fuse: fix livelock in synchronous file put from fuseblk workers  mm: fix lockdep issues in writeback handling  fuse: add prune notification  fuse: remove redundant calls to fuse_copy_finish() in fuse_notify()  fuse: fix possibly missing fuse_copy_finish() call in fuse_notify()  fuse: remove FUSE_NOTIFY_CODE_MAX from &lt;uapi/linux/fuse.h&gt;  fuse: remove fuse_readpages_end() null mapping check  fuse: fix references to fuse.rst -&gt; fuse/fuse.rst  fuse: allow synchronous FUSE_INIT  fuse: zero initialize inode private data  fuse: remove unused &apos;inode&apos; parameter in fuse_passthrough_open  virtio_fs: fix the hash table using in virtio_fs_enqueue_req()  mm: remove BDI_CAP_WRITEBACK_ACCT  fuse: use default writeback accounting  virtio_fs: Remove redundant spinlock in virtio_fs_request_complete()  fuse: remove unneeded offset assignment when filling write pages  ...

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Fri, 03 Oct 2025 21:48:18 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d3f7457da7b9527a06dbcbfaf666aa51ac2eeb53 - selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependency</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#d3f7457da7b9527a06dbcbfaf666aa51ac2eeb53</link>
        <description>selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependencyThe selftests &apos;make clean&apos; does not clean the net/lib because it onlyprocesses $(TARGETS) and ignores $(INSTALL_DEP_TARGETS). This leavescompiled objects in net/lib after cleaning, requiring manual cleanup.Include $(INSTALL_DEP_TARGETS) in clean target to ensure net/libdependency is properly cleaned.Signed-off-by: Nai-Chen Cheng &lt;bleach1827@gmail.com&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Tested-by: Simon Horman &lt;horms@kernel.org&gt; # build-testedAcked-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Link: https://patch.msgid.link/20250910-selftests-makefile-clean-v1-1-29e7f496cd87@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Wed, 10 Sep 2025 13:30:32 +0200</pubDate>
        <dc:creator>Nai-Chen Cheng &lt;bleach1827@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>292e9ee22b0adad49c9a6f63708988e32c007da6 - selftests: Create tools/testing/selftests/vfio</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#292e9ee22b0adad49c9a6f63708988e32c007da6</link>
        <description>selftests: Create tools/testing/selftests/vfioCreate the directory tools/testing/selftests/vfio with a stub Makefileand hook it up to the top-level selftests Makefile.This directory will be used in subsequent commits to host selftests forthe VFIO subsystem.Acked-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Signed-off-by: David Matlack &lt;dmatlack@google.com&gt;Link: https://lore.kernel.org/r/20250822212518.4156428-2-dmatlack@google.comSigned-off-by: Alex Williamson &lt;alex.williamson@redhat.com&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Fri, 22 Aug 2025 23:24:48 +0200</pubDate>
        <dc:creator>David Matlack &lt;dmatlack@google.com&gt;</dc:creator>
    </item>
<item>
        <title>1a7b13781b0d48312e0ead2585776b0afd1343cd - selftests: filesystems: Add functional test for the abort file in fusectl</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/Makefile#1a7b13781b0d48312e0ead2585776b0afd1343cd</link>
        <description>selftests: filesystems: Add functional test for the abort file in fusectlThis patch add a simple functional test for the &quot;abort&quot; filein fusectlfs (/sys/fs/fuse/connections/ID/abort).A simple fuse daemon is added for testing.Related discussion can be found in the link below.Link: https://lore.kernel.org/all/CAOQ4uxjKFXOKQxPpxtS6G_nR0tpw95w0GiO68UcWg_OBhmSY=Q@mail.gmail.com/Signed-off-by: Chen Linxuan &lt;chenlinxuan@uniontech.com&gt;Acked-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Reviewed-by: Amir Goldstein &lt;amir73il@gmail.com&gt;Signed-off-by: Miklos Szeredi &lt;mszeredi@redhat.com&gt;

            List of files:
            /linux/tools/testing/selftests/Makefile</description>
        <pubDate>Tue, 10 Jun 2025 04:10:03 +0200</pubDate>
        <dc:creator>Chen Linxuan &lt;chenlinxuan@uniontech.com&gt;</dc:creator>
    </item>
</channel>
</rss>
