<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>16ba7709 - isci: merge sata.[ch] into request.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#16ba7709</link>
        <description>isci: merge sata.[ch] into request.cUndo some needless separation.Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Fri, 01 Jul 2011 17:52:55 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>12ef6544 - isci: additional state machine cleanup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#12ef6544</link>
        <description>isci: additional state machine cleanupAdditional state machine cleanups: o Remove static functions sci_state_machine_exit_state() and   sci_state_machine_enter_state() o Combines sci_base_state_machine_construct() and   sci_base_state_machine_start() into a single function,   sci_init_sm() o Remove sci_base_state_machine_stop() which is unused. o Kill state_machine.[ch]Signed-off-by: Edmund Nadolski &lt;edmund.nadolski@intel.com&gt;[fixed too large to inline functions]Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Thu, 02 Jun 2011 00:10:50 +0000</pubDate>
        <dc:creator>Edmund Nadolski &lt;edmund.nadolski@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8db02da5 - isci: remove isci_timer interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#8db02da5</link>
        <description>isci: remove isci_timer interfaceDelete code which is no longer used.Signed-off-by: Edmund Nadolski &lt;edmund.nadolski@intel.com&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Thu, 19 May 2011 12:00:22 +0000</pubDate>
        <dc:creator>Edmund Nadolski &lt;edmund.nadolski@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>5dec6f4e - isci: merge stp request substates into primary state machine</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#5dec6f4e</link>
        <description>isci: merge stp request substates into primary state machineRemove usage of the request substate machine for stp requests, and killthe request substate infrastructure.Similar to the previous conversions this adds the substates to theprimary state machine and arranges for the &apos;started&apos; state to transitionto the proper stp substate.Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 10 May 2011 09:28:49 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c72086e3 - isci: merge smp request substates into primary state machine</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#c72086e3</link>
        <description>isci: merge smp request substates into primary state machineRemove usage of the request substate machine for smp requests identified by:	task-&gt;task_proto == SAS_PROTOCOL_SMPWhile merging over the smp_request infrastructure noticed that all theassign buffer implementations are now equal, so moved it toscic_sds_general_request_construct.Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 10 May 2011 09:28:48 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f139303d - isci: merge ssp task management substates into primary state machine</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#f139303d</link>
        <description>isci: merge ssp task management substates into primary state machineRemove usage of the request substate machine for ssp task managementrequests identified by:	ireq-&gt;ttype == tmf_task &amp;&amp; dev-&gt;dev_type == SAS_END_DEV;The only routine that checks the base &apos;started&apos; state isscic_sds_io_request_tc_completion which calls the substate machinehandler if we are not in the &apos;started&apos; state or we are &apos;started&apos; and nosubstate machine is defined.  This routine requires no conversionbecause we have transitioned out of &apos;started&apos; and the substate routinewill be called naturally as a result.There are also no side effects of this conversion on exiting the&apos;started&apos;, state because it only stops the substate machine, which is nolonger relevant for this transaction type.Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 10 May 2011 09:28:47 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e2f8db50 - isci: uplevel port infrastructure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#e2f8db50</link>
        <description>isci: uplevel port infrastructure* Move port configuration agent implementation* Merge core/scic_sds_port.[ch] into port.[ch]Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 10 May 2011 09:28:46 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d35bc1bd - isci: uplevel phy infrastructure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#d35bc1bd</link>
        <description>isci: uplevel phy infrastructureMerge core/scic_sds_phy.[ch] into phy.[ch]Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 10 May 2011 09:28:45 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f1f52e75 - isci: uplevel request infrastructure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#f1f52e75</link>
        <description>isci: uplevel request infrastructure* Consolidate tiny header files* Move files out of core/ (drop core/scic_sds_ prefix)* Merge core/scic_sds_request.[ch] into request.[ch]* Cleanup request.c namespace (clean forward declarations and global  namespace pollution)Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 10 May 2011 09:28:45 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3bff9d54 - isci: uplevel state machine</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#3bff9d54</link>
        <description>isci: uplevel state machineunify core/sci_base_state.h and core/sci_base_state_machine.[ch] intostate_machine.[ch]Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Mon, 09 May 2011 05:15:10 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>63a3a15f - isci: uplevel register hardware data structures and unsolicited frame handling</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#63a3a15f</link>
        <description>isci: uplevel register hardware data structures and unsolicited frame handlingReported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Mon, 09 May 2011 04:36:46 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cc9203bf - isci: move core/controller to host</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#cc9203bf</link>
        <description>isci: move core/controller to hostNow that the data structures are unified unify the implementation inhost.[ch] and cleanup namespace pollution.Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Mon, 09 May 2011 00:34:44 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d6f6404c - isci: Removing unused define SCIC_SDS_4_ENABLED</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#d6f6404c</link>
        <description>isci: Removing unused define SCIC_SDS_4_ENABLEDSigned-off-by: Dave Jiang &lt;dave.jiang@intel.com&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Fri, 22 Apr 2011 06:39:48 +0000</pubDate>
        <dc:creator>Dave Jiang &lt;dave.jiang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ab2e8f7d - isci: merge remote_device substates into a single state machine</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#ab2e8f7d</link>
        <description>isci: merge remote_device substates into a single state machineA substate is just a state, so uplevel the smp and stp device substates.Three tricks at work here:1/ scic_sds_remote_device_ready_state_enter: needs to know the the device type   so it can immediately transition to a stp or smp ready substate.2/ scic_sds_remote_device_ready_state_exit: needs to know the device type. In   the ssp case the device is no longer ready, in the stp, and smp case we have   simply exited to a ready &quot;substate&quot;.3/ scic_sds_remote_device_resume_complete_handler: The one location   where we directly check the current state against   SCI_BASE_REMOTE_DEVICE_STATE_READY needed to comprehend the possible ready   substates.Reported-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Wed, 27 Apr 2011 23:32:45 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3d6e428c - isci: removing non-working ATAPI code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#3d6e428c</link>
        <description>isci: removing non-working ATAPI codeRemoving not used / bit-rotten ATAPI code. This needs to go backand debugged at a later date.Signed-off-by: Dave Jiang &lt;dave.jiang@intel.com&gt;[reflow against devel, delete dead sati headers]Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 26 Apr 2011 19:31:37 +0000</pubDate>
        <dc:creator>Dave Jiang &lt;dave.jiang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>88f3b62a - isci: move remote_device handling out of the core</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#88f3b62a</link>
        <description>isci: move remote_device handling out of the coreNow that the core/lldd remote_device data structures are nominally unifiedmerge the corresponding sources into the top-level directory.  Also move theremote_node_context infrastructure which has no analog at the lldd level.Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Sat, 23 Apr 2011 02:18:03 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>bc5c9674 - isci: simplify dma coherent allocation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#bc5c9674</link>
        <description>isci: simplify dma coherent allocationRemove the insane infrastructure for preallocating coheren DMA regions,and just allocate the memory where needed.  This also gets rid of thealigment adjustments given that Documentation/DMA-API-HOWTO.txt sais:  &quot;The cpu return address and the DMA bus master address are both   guaranteed to be aligned to the smallest PAGE_SIZE order which   is greater than or equal to the requested size.  This invariant   exists (for example) to guarantee that if you allocate a chunk   which is smaller than or equal to 64 kilobytes, the extent of the   buffer you receive will not cross a 64K boundary.&quot;Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;[djbw: moved allocation from start to init, re-add memset]Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Sat, 02 Apr 2011 12:15:04 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>09d7da13 - isci: Remove event_* calls as they are just wrappers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#09d7da13</link>
        <description>isci: Remove event_* calls as they are just wrappersRemoved isci_event_* calls and call those functions directly.Reported-by: Christoph Hellwig &lt;hch@infradead.org&gt;Signed-off-by: Dave Jiang &lt;dave.jiang@intel.com&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Sat, 26 Mar 2011 23:11:51 +0000</pubDate>
        <dc:creator>Dave Jiang &lt;dave.jiang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d044af17 - isci: Add support for probing OROM for OEM params</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/scsi/isci/Makefile#d044af17</link>
        <description>isci: Add support for probing OROM for OEM paramsWe need to scan the OROM for signature and grab the OEM parameters. Wealso need to do the same for EFI. If all fails then we resort to userbinary blob, and if that fails then we go to the defaults.Share the format with the create_fw utility so that all possible sourcesof the parameters are in-sync.Signed-off-by: Dave Jiang &lt;dave.jiang@intel.com&gt;Signed-off-by: Dan Williams &lt;dan.j.williams@intel.com&gt;

            List of files:
            /linux-6.15/drivers/scsi/isci/Makefile</description>
        <pubDate>Tue, 08 Mar 2011 17:52:49 +0000</pubDate>
        <dc:creator>Dan Williams &lt;dan.j.williams@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
