<?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>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>
<item>
        <title>772ba9b5bd2701a9967c084b66ff1daaee0367eb - scsi: cxlflash: Remove driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#772ba9b5bd2701a9967c084b66ff1daaee0367eb</link>
        <description>scsi: cxlflash: Remove driverRemove the cxlflash driver for IBM CAPI Flash devices.The cxlflash driver has received minimal maintenance for some time, andthe CAPI Flash hardware that uses it is no longer commercially available.Thanks to Uma Krishnan, Matthew Ochs and Manoj Kumar for their work onthis driver over the years.Signed-off-by: Andrew Donnellan &lt;ajd@linux.ibm.com&gt;Link: https://lore.kernel.org/r/20250203072801.365551-2-ajd@linux.ibm.comReviewed-by: Frederic Barrat &lt;fbarrat@linux.ibm.com&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Mon, 03 Feb 2025 08:27:59 +0100</pubDate>
        <dc:creator>Andrew Donnellan &lt;ajd@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>4977c0f4523e1d6c87df4eedceb33d38f055c5fb - scsi: scsi_proto: Add structures and constants related to I/O groups and streams</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#4977c0f4523e1d6c87df4eedceb33d38f055c5fb</link>
        <description>scsi: scsi_proto: Add structures and constants related to I/O groups and streamsPrepare for adding code that will query the I/O advice hints groupdescriptors and for adding code that will retrieve the stream status.Cc: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;Signed-off-by: Bart Van Assche &lt;bvanassche@acm.org&gt;Link: https://lore.kernel.org/r/20240130214911.1863909-11-bvanassche@acm.orgSigned-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 30 Jan 2024 22:48:36 +0100</pubDate>
        <dc:creator>Bart Van Assche &lt;bvanassche@acm.org&gt;</dc:creator>
    </item>
<item>
        <title>b04e75a4a8a81887386a0d2dbf605a48e779d2a0 - scsi: dpt_i2o: Remove obsolete driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#b04e75a4a8a81887386a0d2dbf605a48e779d2a0</link>
        <description>scsi: dpt_i2o: Remove obsolete driverThe dpt_i2o driver was fixed to stop using virt_to_bus() in 2008, but itstill has a stale reference in an error handling code path that could neverwork. I submitted a patch to fix this reference earlier, but HannesReinecke suggested that removing the driver may be just as good here.The i2o driver layer was removed in 2015 with commit 4a72a7af462d(&quot;staging: remove i2o subsystem&quot;), but the even older dpt_i2o scsi driverstayed around.The last non-cleanup patches I could find were from Miquel van Smoorenburgand Mark Salyzyn back in 2008, they might know if there is any chance ofthe hardware still being used anywhere.Link: https://lore.kernel.org/linux-scsi/CAK8P3a1XfwkTOV7qOs1fTxf4vthNBRXKNu8A5V7TWnHT081NGA@mail.gmail.com/T/Link: https://lore.kernel.org/r/20220624155226.2889613-3-arnd@kernel.orgCc: Miquel van Smoorenburg &lt;mikevs@xs4all.net&gt;Cc: Mark Salyzyn &lt;salyzyn@android.com&gt;Cc: Hannes Reinecke &lt;hare@suse.de&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Fri, 24 Jun 2022 17:52:25 +0200</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>dd11376b9f1b73aca3f8c6eb541486bbb6996f05 - scsi: ufs: Split the drivers/scsi/ufs directory</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#dd11376b9f1b73aca3f8c6eb541486bbb6996f05</link>
        <description>scsi: ufs: Split the drivers/scsi/ufs directorySplit the drivers/scsi/ufs directory into &apos;core&apos; and &apos;host&apos; directoriesunder the drivers/ufs/ directory. Move shared header files into theinclude/ufs/ directory. This separation makes it clear which header filesUFS drivers are allowed to include (include/ufs/*.h) and which header filesUFS drivers are not allowed to include (drivers/ufs/core/*.h).Update the MAINTAINERS file. Add myself as a UFS reviewer.Link: https://lore.kernel.org/r/20220511212552.655341-1-bvanassche@acm.orgCc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Avri Altman &lt;avri.altman@wdc.com&gt;Cc: Bean Huo &lt;beanhuo@micron.com&gt;Cc: Bjorn Andersson &lt;bjorn.andersson@linaro.org&gt;Cc: Keoseong Park &lt;keosung.park@samsung.com&gt;Tested-by: Bean Huo &lt;beanhuo@micron.com&gt;Tested-by: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Reviewed-by: Bean Huo &lt;beanhuo@micron.com&gt;Acked-by: Avri Altman &lt;avri.altman@wdc.com&gt;Acked-by: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Signed-off-by: Bart Van Assche &lt;bvanassche@acm.org&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 11 May 2022 23:25:52 +0200</pubDate>
        <dc:creator>Bart Van Assche &lt;bvanassche@acm.org&gt;</dc:creator>
    </item>
<item>
        <title>98079418c53fff5f9e2d4087f08eaff2a9ce7714 - scsi: core: Fix missing FORCE for scsi_devinfo_tbl.c build rule</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#98079418c53fff5f9e2d4087f08eaff2a9ce7714</link>
        <description>scsi: core: Fix missing FORCE for scsi_devinfo_tbl.c build ruleAdd FORCE so that if_changed can detect the command line change.scsi_devinfo_tbl.c must be added to &apos;targets&apos; too.Link: https://lore.kernel.org/r/20210819012339.709409-1-masahiroy@kernel.orgSigned-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Thu, 19 Aug 2021 03:23:39 +0200</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>33ff4ce45b124e0356a396a381f374751b9ec7ba - scsi: core: Rename CONFIG_BLK_SCSI_REQUEST to CONFIG_SCSI_COMMON</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#33ff4ce45b124e0356a396a381f374751b9ec7ba</link>
        <description>scsi: core: Rename CONFIG_BLK_SCSI_REQUEST to CONFIG_SCSI_COMMONCONFIG_BLK_SCSI_REQUEST is rather misnamed as it enables building a smallamount of code shared by the SCSI initiator, target, and consumers of thescsi_request passthrough API.  Rename it and also allow building it as amodule.[mkp: add module license]Link: https://lore.kernel.org/r/20210724072033.1284840-20-hch@lst.deSigned-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sat, 24 Jul 2021 09:20:28 +0200</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>78011042684dfbb50f7060f4623793f7a5c74a01 - scsi: bsg: Move bsg_scsi_ops to drivers/scsi/</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#78011042684dfbb50f7060f4623793f7a5c74a01</link>
        <description>scsi: bsg: Move bsg_scsi_ops to drivers/scsi/Move the SCSI-specific bsg code in the SCSI midlayer instead of in thecommon bsg code.  This just keeps the common bsg code block/ and alsoallows building it as a module.Link: https://lore.kernel.org/r/20210724072033.1284840-15-hch@lst.deSigned-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Sat, 24 Jul 2021 09:20:23 +0200</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>ebc076b3eddc807729bd81f7bc48e798a3ddc477 - scsi: elx: efct: Tie into kernel Kconfig and build process</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#ebc076b3eddc807729bd81f7bc48e798a3ddc477</link>
        <description>scsi: elx: efct: Tie into kernel Kconfig and build processThis final patch ties the efct driver into the kernel Kconfig and buildlinkages in the drivers/scsi directory.Link: https://lore.kernel.org/r/20210601235512.20104-32-jsmart2021@gmail.comReported-by: kernel test robot &lt;lkp@intel.com&gt;Reviewed-by: Hannes Reinecke &lt;hare@suse.de&gt;Reviewed-by: Daniel Wagner &lt;dwagner@suse.de&gt;Co-developed-by: Ram Vegesna &lt;ram.vegesna@broadcom.com&gt;Signed-off-by: Ram Vegesna &lt;ram.vegesna@broadcom.com&gt;Signed-off-by: James Smart &lt;jsmart2021@gmail.com&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 02 Jun 2021 01:55:12 +0200</pubDate>
        <dc:creator>James Smart &lt;jsmart2021@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c4f7ac64616ee513f9ac4ae6c4d8c3cccb6974df - scsi: mpi3mr: Add mpi30 Rev-R headers and Kconfig</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#c4f7ac64616ee513f9ac4ae6c4d8c3cccb6974df</link>
        <description>scsi: mpi3mr: Add mpi30 Rev-R headers and KconfigThis adds the Kconfig and mpi30 headers.Link: https://lore.kernel.org/r/20210520152545.2710479-2-kashyap.desai@broadcom.comCc: sathya.prakash@broadcom.comCc: bvanassche@acm.orgCc: hch@infradead.orgReviewed-by: Hannes Reinecke &lt;hare@suse.de&gt;Reviewed-by: Tomas Henzl &lt;thenzl@redhat.com&gt;Reviewed-by: Himanshu Madhani &lt;himanshu.madhani@oracle.com&gt;Signed-off-by: Kashyap Desai &lt;kashyap.desai@broadcom.com&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Thu, 20 May 2021 17:25:22 +0200</pubDate>
        <dc:creator>Kashyap Desai &lt;kashyap.desai@broadcom.com&gt;</dc:creator>
    </item>
<item>
        <title>0653c358d2dc7904c5553c5a9f2cbadc236e3f60 - scsi: Drop gdth driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#0653c358d2dc7904c5553c5a9f2cbadc236e3f60</link>
        <description>scsi: Drop gdth driverThe gdth driver refers to a SCSI parallel, PCI-only HBA RAID adapter whichwas manufactured by the now-defunct ICP Vortex company, later acquired byAdaptec and superseded by the aacraid series of controllers.  The driveritself would require a major overhaul before any modifications can beattempted, but seeing that it&apos;s unlikely to have any users left it shouldrather be removed completely.Link: https://lore.kernel.org/r/20210113090500.129644-2-hare@suse.deCautiously-Acked-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Hannes Reinecke &lt;hare@suse.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 13 Jan 2021 10:04:26 +0100</pubDate>
        <dc:creator>Hannes Reinecke &lt;hare@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>0e5d8b7fb2c675b4fe45adee289e640e848dd881 - scsi: remove pointless $(MODVERDIR)/$(obj)/53c700.ver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#0e5d8b7fb2c675b4fe45adee289e640e848dd881</link>
        <description>scsi: remove pointless $(MODVERDIR)/$(obj)/53c700.verNothing depends on this, so it is dead code.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 17 Jul 2019 08:17:52 +0200</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>e5207cf021df382fe1936f2314ab19e390026a06 - scsi: fdomain: Resurrect driver - ISA support</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#e5207cf021df382fe1936f2314ab19e390026a06</link>
        <description>scsi: fdomain: Resurrect driver - ISA supportFuture Domain 16xx ISA SCSI support card support.Tested on IBM 92F0330 card (18C50 chip) with v1.00 BIOS.Signed-off-by: Ondrej Zary &lt;linux@zary.sk&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 14 May 2019 19:23:09 +0200</pubDate>
        <dc:creator>Ondrej Zary &lt;linux@zary.sk&gt;</dc:creator>
    </item>
<item>
        <title>68046d5003e7b7b4083cdf5dfc2823b7bb0e40ea - scsi: fdomain: Resurrect driver - PCI support</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#68046d5003e7b7b4083cdf5dfc2823b7bb0e40ea</link>
        <description>scsi: fdomain: Resurrect driver - PCI supportFuture Domain TMC-3260/AHA-2920A PCI card support.Tested on Adaptec AHA-2920A PCI card.Signed-off-by: Ondrej Zary &lt;linux@zary.sk&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 14 May 2019 19:23:08 +0200</pubDate>
        <dc:creator>Ondrej Zary &lt;linux@zary.sk&gt;</dc:creator>
    </item>
<item>
        <title>ebeb466531154d6238399eb54438235f6fbbd013 - scsi: fdomain: Resurrect driver - Core</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#ebeb466531154d6238399eb54438235f6fbbd013</link>
        <description>scsi: fdomain: Resurrect driver - CoreFuture Domain TMC-16xx/TMC-3260 SCSI driver.This is the core driver, common for PCI, ISA and PCMCIA cards.Signed-off-by: Ondrej Zary &lt;linux@zary.sk&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Tue, 14 May 2019 19:23:07 +0200</pubDate>
        <dc:creator>Ondrej Zary &lt;linux@zary.sk&gt;</dc:creator>
    </item>
<item>
        <title>4e3ea141b5cb79ded7f4a67bb32e5b23a06a784a - scsi: osst: kill obsolete driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#4e3ea141b5cb79ded7f4a67bb32e5b23a06a784a</link>
        <description>scsi: osst: kill obsolete driverThe osst driver is becoming obsolete, as the manufacturer went out ofbusiness ages ago, and the maintainer has no means of testing anyimprovements anymore.  Plus these days flash drives are cheaper and offer ahigher capacity.  So drop it completely.Cc: Willem Riede &lt;osst@riede.org&gt;Signed-off-by: Hannes Reinece &lt;hare@suse.com&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Mon, 06 May 2019 08:19:15 +0200</pubDate>
        <dc:creator>Hannes Reinecke &lt;hare@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>19fcae3d4f2dd513d472055fb694d802e9a21b91 - scsi: remove the SCSI OSD library</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#19fcae3d4f2dd513d472055fb694d802e9a21b91</link>
        <description>scsi: remove the SCSI OSD libraryNow that all the users are gone the SCSI OSD library can be removed aswell.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Jens Axboe &lt;axboe@kernel.dk&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Thu, 08 Nov 2018 09:28:20 +0100</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>77266186397c6c782a3f670d32808a9671806ec5 - scsi: myrs: Add Mylex RAID controller (SCSI interface)</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#77266186397c6c782a3f670d32808a9671806ec5</link>
        <description>scsi: myrs: Add Mylex RAID controller (SCSI interface)This patch adds support for the Mylex DAC960 RAID controller,supporting the newer, SCSI-based interface.  The driver is are-implementation of the original DAC960 driver.Signed-off-by: Hannes Reinecke &lt;hare@suse.com&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 17 Oct 2018 17:25:12 +0200</pubDate>
        <dc:creator>Hannes Reinecke &lt;hare@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>081ff398c56cc1052091e299aae6f7f7de680853 - scsi: myrb: Add Mylex RAID controller (block interface)</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/scsi/Makefile#081ff398c56cc1052091e299aae6f7f7de680853</link>
        <description>scsi: myrb: Add Mylex RAID controller (block interface)This patch adds support for the Mylex DAC960 RAID controller,supporting the older, block-based interface only.  The driver is are-implementation of the original DAC960 driver.Signed-off-by: Hannes Reinecke &lt;hare@suse.com&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Wed, 17 Oct 2018 17:25:11 +0200</pubDate>
        <dc:creator>Hannes Reinecke &lt;hare@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>72f02ba66bd83b54054da20eae550123de84da6f - 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#72f02ba66bd83b54054da20eae550123de84da6f</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;This is mostly updates to the usual drivers: mpt3sas, lpfc, qla2xxx,  hisi_sas, smartpqi, megaraid_sas, arcmsr.  In addition, with the continuing absence of Nic we have target updates  for tcmu and target core (all with reviews and acks).  The biggest observable change is going to be that we&apos;re (again) trying  to switch to mulitqueue as the default (a user can still override the  setting on the kernel command line).  Other major core stuff is the removal of the remaining Microchannel  drivers, an update of the internal timers and some reworks of  completion and result handling&quot;* tag &apos;scsi-misc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (203 commits)  scsi: core: use blk_mq_run_hw_queues in scsi_kick_queue  scsi: ufs: remove unnecessary query(DM) UPIU trace  scsi: qla2xxx: Fix issue reported by static checker for qla2x00_els_dcmd2_sp_done()  scsi: aacraid: Spelling fix in comment  scsi: mpt3sas: Fix calltrace observed while running IO &amp; reset  scsi: aic94xx: fix an error code in aic94xx_init()  scsi: st: remove redundant pointer STbuffer  scsi: qla2xxx: Update driver version to 10.00.00.08-k  scsi: qla2xxx: Migrate NVME N2N handling into state machine  scsi: qla2xxx: Save frame payload size from ICB  scsi: qla2xxx: Fix stalled relogin  scsi: qla2xxx: Fix race between switch cmd completion and timeout  scsi: qla2xxx: Fix Management Server NPort handle reservation logic  scsi: qla2xxx: Flush mailbox commands on chip reset  scsi: qla2xxx: Fix unintended Logout  scsi: qla2xxx: Fix session state stuck in Get Port DB  scsi: qla2xxx: Fix redundant fc_rport registration  scsi: qla2xxx: Silent erroneous message  scsi: qla2xxx: Prevent sysfs access when chip is down  scsi: qla2xxx: Add longer window for chip reset  ...

            List of files:
            /linux/drivers/scsi/Makefile</description>
        <pubDate>Thu, 16 Aug 2018 07:06:26 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
