<?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>08dbfad3f5040f5bdb6c529da20d6d4e81fefd72 - Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#08dbfad3f5040f5bdb6c529da20d6d4e81fefd72</link>
        <description>Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsiPull more SCSI updates from Martin Petersen: &quot;Remaining updates for the 7.3 merge window. The only core change is  enabling context analysis for the SCSI layer and UFS.  The remaining changes are either bug fixes or hardening&quot;* tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi: (26 commits)  scsi: snic: Fix SCSI host leak on workqueue allocation failure  scsi: MAINTAINERS: Update my email address  scsi: MAINTAINERS: Leave the cumana_1 and oak drivers to the RISCPC maintainers  scsi: leapraid: Standardize NCQ priority sysfs attributes  scsi: leapraid: Serialize firmware log mmap with teardown  scsi: leapraid: Balance host references for firmware log VMAs  scsi: lpfc: Remove unnnecessary NULL check  scsi: qla2xxx: Fix an loop timeout test  scsi: qla2xxx: Fix an error code in qla_get_tmf()  scsi: ibmvfc: Fix use of uninitialized rport in ibmvfc_do_work()  scsi: core: Enable context analysis for hosts.o  scsi: lpfc: Replace strlcat() with sysfs_emit_at() in the sysfs show functions  scsi: lpfc: Replace strlcat() with seq_buf in the debugfs dump helpers  scsi: lpfc: Replace strlcat() with seq_buf in lpfc_rx_monitor_report()  scsi: lpfc: Replace strlcat() with scnprintf() in lpfc_vport_symbolic_node_name()  scsi: lpfc: Replace strlcat() with seq_buf in lpfc_info()  scsi: core: Enable context analysis  scsi: core: Protect host state changes with the host lock  scsi: core: Add lock context annotations  scsi: core: Pass the SCSI host pointer directly to scanning functions  ...

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sat, 29 Aug 2026 20:55:36 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d34a88f53a7ab0a4d84fbff137c9077701e95b06 - scsi: core: Enable context analysis for hosts.o</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#d34a88f53a7ab0a4d84fbff137c9077701e95b06</link>
        <description>scsi: core: Enable context analysis for hosts.oEnable compiler-based context analysis for drivers/scsi/hosts.c by settingCONTEXT_ANALYSIS_hosts.o := y in drivers/scsi/Makefile.The SCSI host management code in hosts.c now has the necessary lock contextannotations (such as __must_hold(shost-&gt;host_lock) on scsi_host_set_state)and conforms to compile-time lock checking rules. It builds cleanly withouttriggering any context analysis warnings.Enable context analysis for hosts.o so that lock correctness and contextsafety invariants for SCSI host operations are verified at compile timewhen CONFIG_WARN_CONTEXT_ANALYSIS is enabled.Fixes: fb0fc67db962 (&quot;scsi: core: Enable context analysis&quot;)Reported-by: John Garry &lt;john.g.garry@oracle.com&gt;Signed-off-by: Bart Van Assche &lt;bvanassche@acm.org&gt;Reviewed-by: John Garry &lt;john.g.garry@oracle.com&gt;Link: https://patch.msgid.link/3e1c3c0ca9307e2581cf4b96cf3fcdae35202255.1786724393.git.bvanassche@acm.orgSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Fri, 14 Aug 2026 18:20:08 +0200</pubDate>
        <dc:creator>Bart Van Assche &lt;bvanassche@acm.org&gt;</dc:creator>
    </item>
<item>
        <title>99d1623c08e91f67c0c6ec677b4a909e27d92014 - Merge patch series &quot;Enable context analysis in the SCSI core and UFS driver&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#99d1623c08e91f67c0c6ec677b4a909e27d92014</link>
        <description>Merge patch series &quot;Enable context analysis in the SCSI core and UFS driver&quot;Bart Van Assche &lt;bvanassche@acm.org&gt; says:Hi Martin,This patch series enables context analysis for the SCSI core and the UFSdriver. The advantages are as follows: - The compiler (only Clang) verifies whether the lock and unlock calls match   what has been declared via __must_hold(), __acquires() or __releases().   This is useful for catching locking bugs in error paths. - Support for __guarded_by() is enabled. If a member variable is annotated   with __guarded_by(lock), the compiler will issue a warning if that member   variable is accessed without holding &apos;lock&apos;.Additionally, a patch is included that suppresses KCSAN complaints about SCSIhost state changes.More information about lock context analysis is available in the cover letter of[PATCH v5 00/36] Compiler-Based Context- and Locking-Analysis(https://lore.kernel.org/lkml/20251219154418.3592607-1-elver@google.com/).Please consider this patch series for the next merge window.Thanks,Bart.Link: https://patch.msgid.link/cover.1786142946.git.bvanassche@acm.orgSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Fri, 14 Aug 2026 04:10:33 +0200</pubDate>
        <dc:creator>Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>fb0fc67db96292a65539e63f536c6f586490c78b - scsi: core: Enable context analysis</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#fb0fc67db96292a65539e63f536c6f586490c78b</link>
        <description>scsi: core: Enable context analysisEnable context analysis for those SCSI core files that build withouttriggering any context analysis warnings.Signed-off-by: Bart Van Assche &lt;bvanassche@acm.org&gt;Reviewed-by: John Garry &lt;john.g.garry@oracle.com&gt;Link: https://patch.msgid.link/2576d2f7e3530b721b5050ac6d25c413037d7e7e.1786142946.git.bvanassche@acm.orgSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sat, 08 Aug 2026 00:49:51 +0200</pubDate>
        <dc:creator>Bart Van Assche &lt;bvanassche@acm.org&gt;</dc:creator>
    </item>
<item>
        <title>b2128290c29902315e632ea59e0504d6bc9e9b42 - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-backmerge</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#b2128290c29902315e632ea59e0504d6bc9e9b42</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-backmergeBackmerge of drm-next, mainly to pick up dt bindings docs updates toavoid conflicts.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sat, 18 Jul 2026 17:06:55 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>637315cb400eed1dbe721954fea437a61a2d65b2 - Merge tag &apos;kvm-riscv-7.3-1&apos; of https://github.com/kvm-riscv/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#637315cb400eed1dbe721954fea437a61a2d65b2</link>
        <description>Merge tag &apos;kvm-riscv-7.3-1&apos; of https://github.com/kvm-riscv/linux into HEADKVM/riscv changes for 7.3- Svadu/Zicfiss/Zicfilp FWFT support for Guest- Use try_cmpxchg for IMSIC MRIF RMW- More arch-specific tracepoints in KVM RISC-V- Eager Page Splitting for KVM RISC-V- Optimize hfence request handling for SMP Guests- Improve dirty log clearing by skipping zero bits in mask- Guard HFENCE range loops against overflow- CPU PM notifiers in KVM RISC-V for non-retentive idle states- Fix kernel-mode vector context save/restore for Guest

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 18 Aug 2026 13:07:31 +0200</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>35748ddd3b2c91555bd86b8cf88edc90e7317e57 - Merge tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#35748ddd3b2c91555bd86b8cf88edc90e7317e57</link>
        <description>Merge tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiPull SCSI updates from James Bottomley: &quot;One new driver: leapraid (similar to mpi3mr but OK&apos;d by Broadcom). The  usual suspects for driver updates (ufs, qla2xxx, smartpqi, zfcp, fnic,  ibmvfc) plus a few small core updates: a fix for an uninitialized sg  list pad bytes plus the removal of the dma mask check for max sectors.  The big update in the sd driver is mostly code refactoring for obscure  error leg handling&quot;* tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (195 commits)  scsi: fnic: Fix built-in NVMe/FC build  scsi: fnic: Fix invalid comparison for error  scsi: core: Fill in DMA padding bytes in scsi_alloc_sgtables()  scsi: zfcp: Enable CONTEXT_ANALYSIS  scsi: zfcp: Add __must_hold() attribute to zfcp_qdio_sbal_get()  scsi: fnic: Use GFP_ATOMIC for VLAN alloc under spinlock  scsi: storvsc: Support manual scans for all Hyper-V targets  scsi: sd: Fix sd_done() sense handling condition  scsi: sd: Fix special_vec mempool leak when scsi_alloc_sgtables() fails  scsi: sd: Fix error handling in sd_probe() after large pool creation failure  scsi: leapraid: Add driver documentation  scsi: leapraid: Add new SCSI driver  scsi: ufs: Add support for the aggregated read query opcode  scsi: ufs: Use unsigned types for the BSG query  scsi: ibmvfc: Fix spelling mistake &quot;Deleteing&quot; -&gt; &quot;Deleting&quot;  scsi: qla2xxx: Update version to 12.00.00.2607b2  scsi: qla2xxx: Bound i2c-&gt;length in I2C bsg handlers  scsi: qla2xxx: Zero SFP DMA buffer in FRU/I2C bsg handlers  scsi: qla2xxx: Validate BSG request_len before reading vendor_cmd[]  scsi: qla2xxx: Zero-init bsg stack buffers to avoid info leak  ...

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Fri, 21 Aug 2026 20:23:20 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>3b6ee713a8f8770165192d8067504e8c83cbcdf8 - Merge patch series &quot;scsi: Add LeapRAID driver support&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#3b6ee713a8f8770165192d8067504e8c83cbcdf8</link>
        <description>Merge patch series &quot;scsi: Add LeapRAID driver support&quot;Dongdong Hao &lt;doubled@leap-io-kernel.com&gt; says:This series adds the LeapRAID driver and its documentation.This version addresses issues reported by Sashiko and the kernel testrobot, as well as issues identified through internal testing. Because[PATCH v4 1/2] exceeded the line-count limit of the public Sashikoservice, it was not analyzed. We therefore deployed Sashiko locallywith an increased line-count limit to complete the analysis and havefixed all identified issues.Link: https://patch.msgid.link/cover.1785823793.git.doubled@leap-io-kernel.comSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Fri, 07 Aug 2026 17:59:18 +0200</pubDate>
        <dc:creator>Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5597088c9e79c94905367c580bb3ff21136b084a - scsi: leapraid: Add new SCSI driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#5597088c9e79c94905367c580bb3ff21136b084a</link>
        <description>scsi: leapraid: Add new SCSI driverThe LeapRAID driver provides support for LeapRAID PCIe RAID controllers,enabling communication between the host operating system, firmware, andhardware for efficient storage management.The driver is organized into several logical modules, each with a clearresponsibility:leapraid_os.c: Integrates with the Linux SCSI subsystem, handling hosttemplate callbacks, PCIe device probing, and initialization.leapraid_func.c: Contains low-level routines for firmware/hardwareinteraction, interrupt handling, and reset logic.leapraid_app.c: Provides the ioctl interface for user-space tools.leapraid_transport.c: Manages interactions with the SCSI transportlayer for SAS PHYs and ports.leapraid_func.h: Contains internal definitions shared among drivermodules.leapraid.h: Contains low-level hardware definitions fordriver/firmware interaction.The leapraid_probe() function orchestrates the setup: it allocates theadapter structure and SCSI host, configures hardware interfaces, andregisters it with the SCSI mid-layer. Following registration,scsi_scan_host() is invoked to initiate device discovery, with firmwarereporting devices via interrupt-driven events.This initial commit provides the necessary infrastructure forsubsequent development of full I/O path handling, error recovery,and advanced management features.Reviewed-by: Damien Le Moal &lt;dlemoal@kernel.org&gt;Reviewed-by: Hannes Reinecke &lt;hare@kernel.org&gt;Signed-off-by: Dongdong Hao &lt;doubled@leap-io-kernel.com&gt;Link: https://patch.msgid.link/0cbc6245aabdc6e8c90587675e76ba316c5b549e.1785823793.git.doubled@leap-io-kernel.comSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 04 Aug 2026 09:02:25 +0200</pubDate>
        <dc:creator>Dongdong Hao &lt;doubled@leap-io-kernel.com&gt;</dc:creator>
    </item>
<item>
        <title>efe86f088f48f18c27b648e5724048947f3b7fb4 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#efe86f088f48f18c27b648e5724048947f3b7fb4</link>
        <description>Merge drm/drm-next into drm-xe-nextSync some i915/display changesSigned-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 14 Jul 2026 15:40:31 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6d177908bad5992e17669030db41caab88041d5e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#6d177908bad5992e17669030db41caab88041d5e</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.2-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 30 Jun 2026 14:55:43 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>827b9aabd3ea3e96d5e48abed9f44dbd1e550d4e - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#827b9aabd3ea3e96d5e48abed9f44dbd1e550d4e</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get drm-misc-next to v7.2-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 30 Jun 2026 10:16:00 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>7dd19adaaac9a161723a24de7c270861063ec6ac - Merge tag &apos;v7.2-rc1&apos; into drm-rust-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#7dd19adaaac9a161723a24de7c270861063ec6ac</link>
        <description>Merge tag &apos;v7.2-rc1&apos; into drm-rust-nextMerge v7.2-rc1 into drm-rust-next to start the next cycle.Devres now requires T: &apos;static, which conflicts with shmem::Object usingDevres&lt;SGTableMap&lt;T, C&gt;&gt; without that bound. Resolve by adding &apos;staticas a supertrait to DriverObject and DeviceContext, which does notrestrict any current use cases since DriverObject is always implementedon owned, refcounted types and DeviceContext is a sealed marker traitwith only unit-type implementors.If DriverObject (or DeviceContext) ever becomes lifetime-parameterized(e.g. via a GAT for TTM backed objects), the &apos;static supertrait can berelaxed at that point.Signed-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sun, 28 Jun 2026 22:39:43 +0200</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3d5e48944e824bddc20d7b874e784f7b279636fe - Merge branch &apos;for-7.3/steam&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#3d5e48944e824bddc20d7b874e784f7b279636fe</link>
        <description>Merge branch &apos;for-7.3/steam&apos; into for-linus- initial support for 2026 Steam Controller (Vicki Pfau)- support for sensor events on the 2025 Steam Controller (Vicki Pfau)- assorted fixes, improvements and code refactoring (Vicki Pfau)

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 19 Aug 2026 09:16:28 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>0eaed89c18aeedf0898baf2dbf5ff027c6795152 - Merge tag &apos;timers-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#0eaed89c18aeedf0898baf2dbf5ff027c6795152</link>
        <description>Merge tag &apos;timers-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource  - Use designated initializers for sh_mtu2, sh_cmt, and sh_tmu, and    drop the unused initializer in the platform_device_id table for    sh_mtu2 (Uwe Kleine-K&#246;nig)  - Remove redundant dev_err()/dev_err_probe() messages when    devm_request_*_irq() fails, as the helper already logs an error    message (Pan Chuang)  - Fix a boot hang on Allwinner D1 when a forced minimum delta is used    with the sun4i timer (Felix Yan)  - Fix an IRQ leak in the cpuhp_setup_state() error path by freeing the    IRQ on failure in the NXP PIT driver (WenTao Liang)  - Fix incorrect unmapping of shared MMIO between the clocksource and    clockevent drivers. If one of them fails to initialize, the error    path unmaps the shared MMIO region, leaving the other driver with an    invalid mapping on clps711x (Guangshuo Li)  - Make the samsung_pwm driver compatible with PREEMPT_RT by replacing    regular spinlocks with raw_spinlock_t in atomic contexts (Marek    Szyprowski)  - Use __raw_readl() and __raw_writel() instead of ioread32() and    iowrite32() to support SWAP_IO_SPACE in the rtl-otto driver (Rustam    Adilov)  - Fix a missing clk_disable_unprepare() call in the timer    initialization error path of the Armada driver (Yuho Choi)Link: https://lore.kernel.org/lkml/75feea31-683d-45a1-87f4-ab045e0152ae@oss.qualcomm.com

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Mon, 17 Aug 2026 10:29:52 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4d85f863e5a6f1fa01b186001af0f68f4f5239e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#b4d85f863e5a6f1fa01b186001af0f68f4f5239e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.3 merge window.

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sat, 15 Aug 2026 06:26:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>76904fccf81936c084faebc73ac72c0919a42941 - Merge tag &apos;v7.2-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#76904fccf81936c084faebc73ac72c0919a42941</link>
        <description>Merge tag &apos;v7.2-rc3&apos; into nextSync up with mainline to pull in stable fixes to avoid merge conflicts.

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 14 Jul 2026 04:06:00 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>00599d4841790d05401820a96cf7edb193888b00 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#00599d4841790d05401820a96cf7edb193888b00</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesPull in tag v7.2-rc1 so that drm-misc-fixes becomes useful again,and drm-misc-next-fixes can be closed.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Mon, 29 Jun 2026 17:58:00 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>8cd8cf7a07e5d141b0c75ce6cf470630e11aa11a - Merge tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#8cd8cf7a07e5d141b0c75ce6cf470630e11aa11a</link>
        <description>Merge tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiPull SCSI updates from James Bottomley: &quot;Only ufs driver updates this time, apart from which this is just an  assortment of bug fixes and AI assisted changes.  The biggest other change is the reversion of the sas_user_scan patch  which supported a mpi3mr NVME behaviour but caused major issues for  other sas controllers. The next biggest is the removal of target reset  in tcm_loop.c&quot;* tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (56 commits)  scsi: target: Remove tcm_loop target reset handling  scsi: lpfc: Fix spelling mistakes in comments  scsi: ufs: ufs-pci: Add AMD device ID support  scsi: ufs: core: Handle PM commands timeout before SCSI EH  scsi: devinfo: Broaden Promise VTrak E310/E610 identification  scsi: target: Use constant-time crypto_memneq() for CHAP digests  scsi: target: Fix hexadecimal CHAP_I handling  scsi: scsi_debug: Fix one-partition tape setup bounds  scsi: ufs: qcom: dt-bindings: Document the Hawi UFS controller  scsi: mailmap: Update Avri Altman&apos;s email address  scsi: ufs: Remove redundant vops NULL check and trivial wrapper  scsi: ufs: Remove unnecessary return in void vops wrappers  scsi: ufs: Fix wrong value printed in unexpected UPIU response case  scsi: ufs: core: Fix NULL pointer dereference in scsi_cmd_priv() calls  scsi: megaraid_mbox: Avoid double kfree()  scsi: pm8001: Fix error code in non_fatal_log_show()  scsi: lpfc: Turn lpfc_queue q_pgs into a flexible array  scsi: ufs: core: Skip link param validation when lanes_per_direction is unset  scsi: sas: Skip opt_sectors when DMA reports no real optimization hint  scsi: Revert &quot;scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans&quot;  ...

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sun, 21 Jun 2026 19:29:45 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>7787588db949a6caa7ca40bd6b67ecb75b68c932 - scsi: ncr53c8xx: Drop CONFIG_ prefix from Zalon-specific compiler defines</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#7787588db949a6caa7ca40bd6b67ecb75b68c932</link>
        <description>scsi: ncr53c8xx: Drop CONFIG_ prefix from Zalon-specific compiler defineskconfiglint reports:  X001: CONFIG_NCR53C8XX_PREFETCH referenced in Makefile but not        defined in any Kconfig  X001: CONFIG_SCSI_NCR53C8XX_NO_WORD_TRANSFERS referenced in Makefile        but not defined in any KconfigThe ncr53c8xx SCSI driver uses two preprocessor defines that carry theCONFIG_ prefix but are not defined in any Kconfig file:  -DCONFIG_NCR53C8XX_PREFETCH  -DCONFIG_SCSI_NCR53C8XX_NO_WORD_TRANSFERSThese are hardcoded compiler flags in drivers/scsi/Makefile, passed onlywhen CONFIG_SCSI_ZALON is enabled:  ncr53c8xx-flags-$(CONFIG_SCSI_ZALON) \      := -DCONFIG_NCR53C8XX_PREFETCH -DSCSI_NCR_BIG_ENDIAN \          -DCONFIG_SCSI_NCR53C8XX_NO_WORD_TRANSFERSThe source files ncr53c8xx.c and ncr53c8xx.h check these defines with#ifdef to enable script prefetching and disable 16-bit word transfersrespectively &#8212; both specific to the PA-RISC Zalon SCSI controller&apos;sbig-endian bus requirements.These defines have been present since the initial git import in commit1da177e4c3f4 (&quot;Linux-2.6.12-rc2&quot;). They predate the modern Kconfigconvention that CONFIG_ prefixed symbols should always originate fromKconfig. The third define on the same line, SCSI_NCR_BIG_ENDIAN, alreadycorrectly omits the CONFIG_ prefix.The CONFIG_ prefix is misleading: these are not user-configurableoptions and do not appear in any Kconfig menu. They are unconditionallyenabled for all Zalon builds. Remove the CONFIG_ prefix from bothsymbols &#8212; renaming them to NCR53C8XX_PREFETCH andSCSI_NCR53C8XX_NO_WORD_TRANSFERS &#8212; to match the convention used bySCSI_NCR_BIG_ENDIAN on the same line and to avoid confusion with actualKconfig-managed symbols.No functional change.Assisted-by: Claude:claude-opus-4-6 kconfiglintSigned-off-by: Sasha Levin &lt;sashal@kernel.org&gt;Link: https://patch.msgid.link/20260426000330.56137-1-sashal@kernel.orgSigned-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sun, 26 Apr 2026 02:03:30 +0200</pubDate>
        <dc:creator>Sasha Levin &lt;sashal@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
