<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0525265e - scsi: libsas: Drop BLK_DEV_BSGLIB selection</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#0525265e</link>
        <description>scsi: libsas: Drop BLK_DEV_BSGLIB selectionSCSI_SAS_ATTRS already selects BLK_DEV_BSGLIB in drivers/scsi/Kconfig.Remove selection in libsas/Kconfig.Link: https://lore.kernel.org/r/20210723084624.2596297-1-guoqing.jiang@linux.devSigned-off-by: Guoqing Jiang &lt;jiangguoqing@kylinos.cn&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Fri, 23 Jul 2021 08:46:24 +0000</pubDate>
        <dc:creator>Guoqing Jiang &lt;jiangguoqing@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>bd322af1 - ata: make SATA_PMP option selectable only if any SATA host driver is enabled</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#bd322af1</link>
        <description>ata: make SATA_PMP option selectable only if any SATA host driver is enabledThere is no reason to expose SATA_PMP config option when no SATAhost drivers are enabled. To fix it add SATA_HOST config option,make all SATA host drivers select it and finally make SATA_PMPconfig options depend on it.This also serves as preparation for the future changes whichoptimize libata core code size on PATA only setups.CC: &quot;James E.J. Bottomley&quot; &lt;jejb@linux.ibm.com&gt;Reviewed-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt; # for SCSI bitsReviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Signed-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Thu, 26 Mar 2020 15:57:58 +0000</pubDate>
        <dc:creator>Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>873e65bc - treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 167</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#873e65bc</link>
        <description>treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 167Based on 1 normalized pattern(s):  this program is free software you can redistribute it and or modify  it under the terms of the gnu general public license as published by  the free software foundation version 2 of the license this program  is distributed in the hope that it will be useful but without any  warranty without even the implied warranty of merchantability or  fitness for a particular purpose see the gnu general public license  for more details you should have received a copy of the gnu general  public license along with this program if not write to the free  software foundation inc 59 temple place suite 330 boston ma 02111  1307 usaextracted by the scancode license scanner the SPDX license identifier  GPL-2.0-onlyhas been chosen to replace the boilerplate/reference in 83 file(s).Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Reviewed-by: Richard Fontana &lt;rfontana@redhat.com&gt;Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Allison Randal &lt;allison@lohutok.net&gt;Cc: linux-spdx@vger.kernel.orgLink: https://lkml.kernel.org/r/20190527070034.021731668@linutronix.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Mon, 27 May 2019 06:55:15 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>651a0136 - scsi: scsi_transport_sas: switch to bsg-lib for SMP passthrough</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#651a0136</link>
        <description>scsi: scsi_transport_sas: switch to bsg-lib for SMP passthroughSimplify the SMP passthrough code by switching it to the generic bsg-libhelpers that abstract away the details of the request code, and getsdrivers out of seeing struct scsi_request.For the libsas host SMP code there is a small behavior difference inthat we now always clear the residual len for successful commands,similar to the three other SMP handler implementations.  Given thatthere is no partial command handling in the host SMP handler this shouldnot matter in practice.[mkp: typos and checkpatch fixes]Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Johannes Thumshirn &lt;jthumshirn@suse.de&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Fri, 25 Aug 2017 15:37:41 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>96db6fa9 - [SCSI] libsas: convert to standard kernel debugging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#96db6fa9</link>
        <description>[SCSI] libsas: convert to standard kernel debuggingInstead of using a config option for debugging, just dump themessages with KERN_DEBUG.Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Sun, 23 Jan 2011 14:19:00 +0000</pubDate>
        <dc:creator>James Bottomley &lt;James.Bottomley@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b98e66fa - [SCSI] libsas: add host SMP processing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#b98e66fa</link>
        <description>[SCSI] libsas: add host SMP processingThis adds support for host side SMP processing, via a separateSMP interpreter file.Signed-off-by: James Bottomley &lt;James.Bottomley@HansenPartnership.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Fri, 28 Dec 2007 22:35:17 +0000</pubDate>
        <dc:creator>James Bottomley &lt;James.Bottomley@HansenPartnership.com&gt;</dc:creator>
    </item>
<item>
        <title>15617ff6 - [SCSI] libsas: fix build dependencies on libata</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#15617ff6</link>
        <description>[SCSI] libsas: fix build dependencies on libataIf you have the libsas with ATA support, it needs libata to function.The problem is that if you compile in libsas, you can&apos;t build libataas a module (however, vice versa you can).Signed-off-by: James Bottomley &lt;James.Bottomley@SteelEye.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Sat, 28 Jul 2007 15:07:36 +0000</pubDate>
        <dc:creator>James Bottomley &lt;James.Bottomley@steeleye.com&gt;</dc:creator>
    </item>
<item>
        <title>b9142174 - [SCSI] libsas: make ATA functions selectable by a config option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#b9142174</link>
        <description>[SCSI] libsas: make ATA functions selectable by a config optionNot everyone wants libsas automatically to pull in libata.  This patchmakes the behaviour configurable, so you can build libsas with orwithout ATA support.Signed-off-by: James Bottomley &lt;James.Bottomley@SteelEye.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Sun, 22 Jul 2007 18:15:55 +0000</pubDate>
        <dc:creator>James Bottomley &lt;James.Bottomley@steeleye.com&gt;</dc:creator>
    </item>
<item>
        <title>2908d778 - [SCSI] aic94xx: new driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/libsas/Kconfig#2908d778</link>
        <description>[SCSI] aic94xx: new driverThis is the end point of the separate aic94xx driver based on theoriginal driver and transport class from Luben Tuikov&lt;ltuikov@yahoo.com&gt;The log of the separate development is:Alexis Bruemmer:  o aic94xx: fix hotplug/unplug for expanderless systems  o aic94xx: disable split completion timer/setting by default  o aic94xx: wide port off expander support  o aic94xx: remove various inline functions  o aic94xx: use bitops  o aic94xx: remove queue comment  o aic94xx: remove sas_common.c  o aic94xx: sas remove depot&apos;s  o aic94xx: use available list_for_each_entry_safe_reverse()  o aic94xx: sas header file mergeJames Bottomley:  o aic94xx: fix TF_TMF_NO_CTX processing  o aic94xx: convert to request_firmware interface  o aic94xx: fix hotplug/unplug  o aic94xx: add link error counts to the expander phys  o aic94xx: add transport class phy reset capability  o aic94xx: remove local_attached flag  o Remove README  o Fixup Makefile variable for libsas rename  o Rename sas-&gt;libsas  o aic94xx: correct return code for sas_discover_event  o aic94xx: use parent backlink port  o aic94xx: remove channel abstraction  o aic94xx: fix routing algorithms  o aic94xx: add backlink port  o aic94xx: fix cascaded expander properties  o aic94xx: fix sleep under lock  o aic94xx: fix panic on module removal in complex topology  o aic94xx: make use of the new sas_port  o rename sas_port to asd_sas_port  o Fix for eh_strategy_handler move  o aic94xx: move entirely over to correct transport class formulation  o remove last vestages of sas_rphy_alloc()  o update for eh_timed_out move  o Preliminary expander support for aic94xx  o sas: remove event thread  o minor warning cleanups  o remove last vestiges of id mapping arrays  o Further updates  o Convert aic94xx over entirely to the transport class end device and  o update aic94xx/sas to use the new sas transport class end device  o [PATCH] aic94xx: attaching to the sas transport class  o Add missing completion removal from prior patch  o [PATCH] aic94xx: attaching to the sas transport class  o Build fixes from akpmJeff Garzik:  o [scsi aic94xx] Remove -&gt;owner from PCI info tableLuben Tuikov:  o initial aic94xx driverMike Anderson:  o aic94xx: fix panic on module insertion  o aic94xx: stub out SATA_DEV case  o aic94xx: compile warning cleanups  o aic94xx: sas_alloc_task  o aic94xx: ref count update  o aic94xx nexus loss time value  o [PATCH] aic94xx: driver assertion in non-x86 BIOS envRandy Dunlap:  o libsas: externs not neededRobert Tarte:  o aic94xx: sequence patch - fixes SATA supportSigned-off-by: James Bottomley &lt;James.Bottomley@SteelEye.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/libsas/Kconfig</description>
        <pubDate>Tue, 29 Aug 2006 14:22:51 +0000</pubDate>
        <dc:creator>James Bottomley &lt;James.Bottomley@SteelEye.com&gt;</dc:creator>
    </item>
</channel>
</rss>
