<?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 leapraid_app.c</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/leapraid/leapraid_app.c#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/leapraid/leapraid_app.c</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>00b7c8d4ce441aa9ac704840332ba4738e1c6d51 - scsi: leapraid: Serialize firmware log mmap with teardown</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/leapraid/leapraid_app.c#00b7c8d4ce441aa9ac704840332ba4738e1c6d51</link>
        <description>scsi: leapraid: Serialize firmware log mmap with teardownleapraid_fw_log_exit() waits for mmap_refcnt to reach zero before it freesthe firmware log buffer.  leapraid_fw_mmap() checks host_removing, but itdoes not increment mmap_refcnt until after dma_mmap_coherent() succeeds andthe VMA open callback runs.Removal can set host_removing and observe a zero mmap_refcnt between thecheck and the VMA open.  It can then free the coherent buffer while themmap path is still establishing a userspace mapping of it.Claim a temporary mmap reference while looking up the adapter underleapraid_adapter_lock.  Removal deletes the adapter from the same lockedlist after setting host_removing, so a mapping is either rejected orincluded in the count that removal waits for.  Drop the temporary referenceon the common exit path, after a successful VMA open has acquired thereference covering the VMA lifetime.Fixes: 5597088c9e79 (&quot;scsi: leapraid: Add new SCSI driver&quot;)Signed-off-by: Linmao Li &lt;lilinmao@kylinos.cn&gt;Reviewed-by: Dongdong Hao &lt;doubled@leap-io-kernel.com&gt;Link: https://patch.msgid.link/20260814033845.2971706-3-lilinmao@kylinos.cnSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/leapraid/leapraid_app.c</description>
        <pubDate>Fri, 14 Aug 2026 05:38:45 +0200</pubDate>
        <dc:creator>Linmao Li &lt;lilinmao@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>970f69b6bf71562df5afcefb89c77b4e971d68de - scsi: leapraid: Balance host references for firmware log VMAs</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/leapraid/leapraid_app.c#970f69b6bf71562df5afcefb89c77b4e971d68de</link>
        <description>scsi: leapraid: Balance host references for firmware log VMAsleapraid_fw_mmap() keeps the Scsi_Host reference obtained while looking upthe adapter for the lifetime of the initial VMA.  The VMA close callbackdrops that reference.The open callback is also invoked when a VMA is duplicated or split, but itonly increments mmap_refcnt.  Since every corresponding close callbackdrops a host reference, cloning the mapping can release the host whileanother VMA still refers to the adapter.Take a host device reference for every VMA open and release the lookupreference once the initial mapping has acquired its own reference.  Useget_device() because a VMA can be cloned after the host enters SHOST_DEL;an existing VMA still pins the host at that point and open cannot fail.Fixes: 5597088c9e79 (&quot;scsi: leapraid: Add new SCSI driver&quot;)Signed-off-by: Linmao Li &lt;lilinmao@kylinos.cn&gt;Reviewed-by: Dongdong Hao &lt;doubled@leap-io-kernel.com&gt;Link: https://patch.msgid.link/20260814033845.2971706-2-lilinmao@kylinos.cnSigned-off-by: Martin K. Petersen (Oracle) &lt;mkp@kernel.org&gt;

            List of files:
            /linux/drivers/scsi/leapraid/leapraid_app.c</description>
        <pubDate>Fri, 14 Aug 2026 05:38:44 +0200</pubDate>
        <dc:creator>Linmao Li &lt;lilinmao@kylinos.cn&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/leapraid/leapraid_app.c#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/leapraid/leapraid_app.c</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/leapraid/leapraid_app.c#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/leapraid/leapraid_app.c</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/leapraid/leapraid_app.c#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/leapraid/leapraid_app.c</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>
</channel>
</rss>
