<?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 kernel-chktaint</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>136114e0abf03005e182d75761ab694648e6d388 - Merge tag &apos;mm-nonmm-stable-2026-02-12-10-48&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#136114e0abf03005e182d75761ab694648e6d388</link>
        <description>Merge tag &apos;mm-nonmm-stable-2026-02-12-10-48&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull non-MM updates from Andrew Morton: - &quot;ocfs2: give ocfs2 the ability to reclaim suballocator free bg&quot; saves   disk space by teaching ocfs2 to reclaim suballocator block group   space (Heming Zhao) - &quot;Add ARRAY_END(), and use it to fix off-by-one bugs&quot; adds the   ARRAY_END() macro and uses it in various places (Alejandro Colomar) - &quot;vmcoreinfo: support VMCOREINFO_BYTES larger than PAGE_SIZE&quot; makes   the vmcore code future-safe, if VMCOREINFO_BYTES ever exceeds the   page size (Pnina Feder) - &quot;kallsyms: Prevent invalid access when showing module buildid&quot; cleans   up kallsyms code related to module buildid and fixes an invalid   access crash when printing backtraces (Petr Mladek) - &quot;Address page fault in ima_restore_measurement_list()&quot; fixes a   kexec-related crash that can occur when booting the second-stage   kernel on x86 (Harshit Mogalapalli) - &quot;kho: ABI headers and Documentation updates&quot; updates the kexec   handover ABI documentation (Mike Rapoport) - &quot;Align atomic storage&quot; adds the __aligned attribute to atomic_t and   atomic64_t definitions to get natural alignment of both types on   csky, m68k, microblaze, nios2, openrisc and sh (Finn Thain) - &quot;kho: clean up page initialization logic&quot; simplifies the page   initialization logic in kho_restore_page() (Pratyush Yadav) - &quot;Unload linux/kernel.h&quot; moves several things out of kernel.h and into   more appropriate places (Yury Norov) - &quot;don&apos;t abuse task_struct.group_leader&quot; removes the usage of   -&gt;group_leader when it is &quot;obviously unnecessary&quot; (Oleg Nesterov) - &quot;list private v2 &amp; luo flb&quot; adds some infrastructure improvements to   the live update orchestrator (Pasha Tatashin)* tag &apos;mm-nonmm-stable-2026-02-12-10-48&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (107 commits)  watchdog/hardlockup: simplify perf event probe and remove per-cpu dependency  procfs: fix missing RCU protection when reading real_parent in do_task_stat()  watchdog/softlockup: fix sample ring index wrap in need_counting_irqs()  kcsan, compiler_types: avoid duplicate type issues in BPF Type Format  kho: fix doc for kho_restore_pages()  tests/liveupdate: add in-kernel liveupdate test  liveupdate: luo_flb: introduce File-Lifecycle-Bound global state  liveupdate: luo_file: Use private list  list: add kunit test for private list primitives  list: add primitives for private list manipulations  delayacct: fix uapi timespec64 definition  panic: add panic_force_cpu= parameter to redirect panic to a specific CPU  netclassid: use thread_group_leader(p) in update_classid_task()  RDMA/umem: don&apos;t abuse current-&gt;group_leader  drm/pan*: don&apos;t abuse current-&gt;group_leader  drm/amd: kill the outdated &quot;Only the pthreads threading model is supported&quot; checks  drm/amdgpu: don&apos;t abuse current-&gt;group_leader  android/binder: use same_thread_group(proc-&gt;tsk, current) in binder_mmap()  android/binder: don&apos;t abuse current-&gt;group_leader  kho: skip memoryless NUMA nodes when reserving scratch areas  ...

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Thu, 12 Feb 2026 21:13:01 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>08e8f1ef3df270daef4ffc9c4bb15669f72d5d2f - kernel-chktaint: add reporting for tainted modules</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#08e8f1ef3df270daef4ffc9c4bb15669f72d5d2f</link>
        <description>kernel-chktaint: add reporting for tainted modulesCheck all loaded modules and report any that have their &apos;taint&apos;flags set.  The tainted module output format is: * &lt;module_name&gt; (&lt;taint_flags&gt;)Example output:Kernel is &quot;tainted&quot; for the following reasons: * externally-built (&apos;out-of-tree&apos;) module was loaded  (#12) * unsigned module was loaded (#13)Raw taint value as int/string: 12288/&apos;G           OE      &apos;Tainted modules: * dump_test (OE)Link: https://lkml.kernel.org/r/20260115064756.531592-1-rdunlap@infradead.orgSigned-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Acked-by: Thorsten Leemhuis &lt;linux@leemhuis.info&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Thu, 15 Jan 2026 07:47:56 +0100</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>bbfd5594756011167b8f8de9a00e0c946afda1e6 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#bbfd5594756011167b8f8de9a00e0c946afda1e6</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in a67221b5eb8d (&quot;drm/i915/dp: Return min bpc supported by source instead of 0&quot;)in order to fix build breakage on GCC 9.4.0 (from Ubuntu 20.04).Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Wed, 28 May 2025 09:20:17 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>db5302ae571beec635c1a96e7f72926a4e65195e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#db5302ae571beec635c1a96e7f72926a4e65195e</link>
        <description>Merge drm/drm-next into drm-intel-nextBackmerge to sync with v6.15-rc, xe, and specifically async flip changesin drm-misc.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Fri, 16 May 2025 09:22:36 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>4f9786035f9e519db41375818e1d0b5f20da2f10 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#4f9786035f9e519db41375818e1d0b5f20da2f10</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.16 merge window.

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Mon, 02 Jun 2025 06:41:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d51b9d81f7883f526b26e3ab903e646274aebeb1 - Merge tag &apos;v6.15-rc6&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#d51b9d81f7883f526b26e3ab903e646274aebeb1</link>
        <description>Merge tag &apos;v6.15-rc6&apos; into nextSync up with mainline to bring in xpad controller changes.

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Fri, 16 May 2025 01:20:39 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>844e31bbaef7c8a6ff2c0fbac45c0c85b5484482 - Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#844e31bbaef7c8a6ff2c0fbac45c0c85b5484482</link>
        <description>Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into msm-nextMerge drm-misc-next to get commit Fixes: fec450ca15af (&quot;drm/display:hdmi: provide central data authority for ACR params&quot;).Signed-off-by: Rob Clark &lt;robdclark@chromium.org&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Tue, 29 Apr 2025 22:42:29 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>3ab7ae8e07f888f223027f0ef84d33e43919ad55 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#3ab7ae8e07f888f223027f0ef84d33e43919ad55</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerge to bring in linux 6.15-rc.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Thu, 24 Apr 2025 13:34:55 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1afba39f9305fe4061a4e70baa6ebab9d41459da - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#1afba39f9305fe4061a4e70baa6ebab9d41459da</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get v6.15-rc1 into drm-misc-next. Also fixes abuild issue when enabling CONFIG_DRM_SCHED_KUNIT_TEST.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Mon, 07 Apr 2025 13:47:40 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9f13acb2406a3aed90c6738b3a2f1c0e43118cbd - Merge tag &apos;v6.15-rc1&apos; into x86/cpu, to refresh the branch with upstream changes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#9f13acb2406a3aed90c6738b3a2f1c0e43118cbd</link>
        <description>Merge tag &apos;v6.15-rc1&apos; into x86/cpu, to refresh the branch with upstream changesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Fri, 11 Apr 2025 11:13:27 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6ce0fdaae043803bb324d915ce0fe43316bf1e81 - Merge tag &apos;v6.15-rc1&apos; into x86/asm, to refresh the branch</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#6ce0fdaae043803bb324d915ce0fe43316bf1e81</link>
        <description>Merge tag &apos;v6.15-rc1&apos; into x86/asm, to refresh the branchSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Wed, 09 Apr 2025 21:39:43 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1260ed77798502de9c98020040d2995008de10cc - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#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/tools/debugging/kernel-chktaint</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>0ccff074d6aa45835ccb7c0e4a995a32e4c90b5a - Merge tag &apos;for-linus-fwctl&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#0ccff074d6aa45835ccb7c0e4a995a32e4c90b5a</link>
        <description>Merge tag &apos;for-linus-fwctl&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdmaPull fwctl subsystem from Jason Gunthorpe: &quot;fwctl is a new subsystem intended to bring some common rules and order  to the growing pattern of exposing a secure FW interface directly to  userspace.  Unlike existing places like RDMA/DRM/VFIO/uacce that are exposing a  device for datapath operations fwctl is focused on debugging,  configuration and provisioning of the device. It will not have the  necessary features like interrupt delivery to support a datapath.  This concept is similar to the long standing practice in the &quot;HW&quot; RAID  space of having a device specific misc device to manage the RAID  controller FW. fwctl generalizes this notion of a companion debug and  management interface that goes along with a dataplane implemented in  an appropriate subsystem.  There have been three LWN articles written discussing various aspects  of this:	https://lwn.net/Articles/955001/	https://lwn.net/Articles/969383/	https://lwn.net/Articles/990802/  This includes three drivers to launch the subsystem:   - CXL provides a vendor scheme for executing commands and a way to     learn the &apos;command effects&apos; (ie the security properties) of such     commands. The fwctl driver allows access to these mechanism within     the fwctl security model   - mlx5 is family of networking products, the driver supports all     current Mellanox HW still receiving FW feature updates. This     includes RDMA multiprotocol NICs like ConnectX and the Bluefield     family of Smart NICs.   - AMD/Pensando Distributed Services card is a multi protocol Smart     NIC with a multi PCI function design. fwctl works on the management     PCI function following a &apos;command effects&apos; model similar to CXL&quot;* tag &apos;for-linus-fwctl&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma: (30 commits)  pds_fwctl: add Documentation entries  pds_fwctl: add rpc and query support  pds_fwctl: initial driver framework  pds_core: add new fwctl auxiliary_device  pds_core: specify auxiliary_device to be created  pds_core: make pdsc_auxbus_dev_del() void  cxl: Fixup kdoc issues for include/cxl/features.h  fwctl/cxl: Add documentation to FWCTL CXL  cxl/test: Add Set Feature support to cxl_test  cxl/test: Add Get Feature support to cxl_test  cxl: Add support to handle user feature commands for set feature  cxl: Add support to handle user feature commands for get feature  cxl: Add support for fwctl RPC command to enable CXL feature commands  cxl: Move cxl feature command structs to user header  cxl: Add FWCTL support to CXL  mlx5: Create an auxiliary device for fwctl_mlx5  fwctl/mlx5: Support for communicating with mlx5 fw  fwctl: Add documentation  fwctl: FWCTL_RPC to execute a Remote Procedure Call to device firmware  taint: Add TAINT_FWCTL  ...

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Sat, 29 Mar 2025 18:45:20 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>8eea4e74475804285507c077bec87d40be87ff06 - taint: Add TAINT_FWCTL</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#8eea4e74475804285507c077bec87d40be87ff06</link>
        <description>taint: Add TAINT_FWCTLRequesting a fwctl scope of access that includes mutating device debugdata will cause the kernel to be tainted. Changing the device operationthrough things in the debug scope may cause the device to malfunction inundefined ways. This should be reflected in the TAINT flags to help anydebuggers understand that something has been done.Link: https://patch.msgid.link/r/4-v5-642aa0c94070+4447f-fwctl_jgg@nvidia.comReviewed-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Reviewed-by: Dave Jiang &lt;dave.jiang@intel.com&gt;Reviewed-by: Shannon Nelson &lt;shannon.nelson@amd.com&gt;Tested-by: Dave Jiang &lt;dave.jiang@intel.com&gt;Tested-by: Shannon Nelson &lt;shannon.nelson@amd.com&gt;Signed-off-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Fri, 28 Feb 2025 01:26:32 +0100</pubDate>
        <dc:creator>Jason Gunthorpe &lt;jgg@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>4f2c0a4acffbec01079c28f839422e64ddeff004 - Merge branch &apos;main&apos; into zstd-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#4f2c0a4acffbec01079c28f839422e64ddeff004</link>
        <description>Merge branch &apos;main&apos; into zstd-linus

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Wed, 14 Dec 2022 01:21:55 +0100</pubDate>
        <dc:creator>Nick Terrell &lt;terrelln@fb.com&gt;</dc:creator>
    </item>
<item>
        <title>e291c116f60f3c1ca98090f0f8e7c77e658562fb - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#e291c116f60f3c1ca98090f0f8e7c77e658562fb</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.2 merge window.

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Mon, 12 Dec 2022 19:47:03 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>29583dfcd2dd72c766422bd05c16f06c6b1fb356 - Merge drm/drm-next into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#29583dfcd2dd72c766422bd05c16f06c6b1fb356</link>
        <description>Merge drm/drm-next into drm-misc-next-fixesBackmerging to update drm-misc-next-fixes for the final phaseof the release cycle.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Mon, 21 Nov 2022 09:03:13 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>002c6ca75289a4ac4f6738213dd2d258704886e4 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#002c6ca75289a4ac4f6738213dd2d258704886e4</link>
        <description>Merge drm/drm-next into drm-intel-nextCatch up on 6.1-rc cycle in order to solve the intel_backlightconflict on linux-next.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Mon, 14 Nov 2022 20:32:34 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d93618da6b6d453c6a9684a3460ffd51b9b4ef2e - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/debugging/kernel-chktaint#d93618da6b6d453c6a9684a3460ffd51b9b4ef2e</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeeded to bring in v6.1-rc1 which contains commit f683b9d61319 (&quot;i915: use the VMA iterator&quot;)which is needed for series https://patchwork.freedesktop.org/series/110083/ .Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/tools/debugging/kernel-chktaint</description>
        <pubDate>Fri, 04 Nov 2022 10:11:30 +0100</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
