<?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/net/ethernet/sun/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/net/ethernet/sun/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>5d01fa0c - ldmvsw: Add ldmvsw.c driver code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/sun/Makefile#5d01fa0c</link>
        <description>ldmvsw: Add ldmvsw.c driver code  Add ldmvsw.c driver  Details:  The ldmvsw driver very closely follows the sunvnet.c code and makes  use of the sunvnet_common.c code for core functionality.  A significant difference between sunvnet and ldmvsw driver is  sunvnet creates a network interface for each vnet-port *parent*  node in the MD while the ldmvsw driver creates a network interface  for every vsw-port node in the Machine Description (MD).  Therefore the netdev_priv() for sunvnet is a vnet structure while  the netdev_priv() for ldmvsw is a vnet_port structure.  Vnet_port structures allocated by ldmvsw have the vsw bit set.  When finding the net_device associated with a port, the common code keys  off this bit to use either the net_device found in the vnet_port or the  net_device in the vnet structure (see the VNET_PORT_TO_NET_DEVICE() macro in  sunvnet_common.h). This scheme allows the common code to work with  both drivers with minimal changes.  Similar to Xen, network interfaces created by the ldmvsw driver will always  have a HW Addr (i.e. mac address) of FE:FF:FF:FF:FF:FF and each will be  assigned the devname &quot;vif&lt;cfg_handle&gt;.&lt;port_id&gt;&quot; - where &lt;cfg_handle&gt; and  &lt;port_id&gt; are a unique handle/port pair assigned to the associated  vsw-port node in the MD.  Signed-off-by: Aaron Young &lt;aaron.young@oracle.com&gt;  Signed-off-by: Rashmi Narasimhan &lt;rashmi.narasimhan@oracle.com&gt;  Reviewed-by: Sowmini Varadhan &lt;sowmini.varadhan@oracle.com&gt;  Reviewed-by: Alexandre Chartre &lt;Alexandre.Chartre@oracle.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/sun/Makefile</description>
        <pubDate>Tue, 15 Mar 2016 18:35:39 +0000</pubDate>
        <dc:creator>Aaron Young &lt;aaron.young@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>31762eaa - ldmvsw: Split sunvnet driver into common code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/sun/Makefile#31762eaa</link>
        <description>ldmvsw: Split sunvnet driver into common code  Split sunvnet.c into sunvnet.c and sunvnet_common.c.  Details:  Since the sunvnet and ldmvsw drivers will both use common sunvnet code,  move the functions (and support functions) anticipated to be common code  from sunvnet.c to sunvnet_common.c. Similarly, sunvnet.h was renamed to  sunvnet_common.h. The sunvnet_common.c code will be compiled into the  kernel and act as a library of functions that are linked by either  (or both) drivers when loaded.  Function names for external functions in sunvnet_common.c (to be  called by both the sunvnet and ldmvsw drivers) were tagged with a &quot;_common&quot;  suffix to clearly designate them as common functions.  No functional changes as of yet... just moved code verbatim to the new  sunvnet_common.c/h files.  Makefile/Kconfig support added to build sunvnet_common.c file. The code  is included in the kernel if SUN_LDOMS is defined/selected.  NOTE - per the SubmittingPatches documentation, since the code was just  moved from one file another, the code was NOT checkpatch&apos;d in this commit  to aid in review.  Signed-off-by: Aaron Young &lt;aaron.young@oracle.com&gt;  Signed-off-by: Rashmi Narasimhan &lt;rashmi.narasimhan@oracle.com&gt;  Reviewed-by: Sowmini Varadhan &lt;sowmini.varadhan@oracle.com&gt;  Reviewed-by: Alexandre Chartre &lt;Alexandre.Chartre@oracle.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/sun/Makefile</description>
        <pubDate>Tue, 15 Mar 2016 18:35:37 +0000</pubDate>
        <dc:creator>Aaron Young &lt;aaron.young@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>19e2f6fe - net: Fix sungem_phy sharing.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/sun/Makefile#19e2f6fe</link>
        <description>net: Fix sungem_phy sharing.Since sungem_phy is used by multiple, unrelated, drivers make itbuild as a real module under drivers/net.depmod will pick up the symbol dependency and make sure sungem_phy.kogets loaded any time sungem.ko or spider_net.ko is loaded.Tested-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/sun/Makefile</description>
        <pubDate>Tue, 16 Aug 2011 06:10:39 +0000</pubDate>
        <dc:creator>David S. Miller &lt;davem@davemloft.net&gt;</dc:creator>
    </item>
<item>
        <title>5ff2241d - spider_net: fix compile issue introduced by driver move</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/sun/Makefile#5ff2241d</link>
        <description>spider_net: fix compile issue introduced by driver moveBoth Spider net driver and Sun GEM driver use the sungem_phy.o object.This fix creates a Kconfig object for sungem_phy (like MDIO) so thatboth drivers require the SUNGEM_PHY object.This has been compile tested for the Sun GEM driver.Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/sun/Makefile</description>
        <pubDate>Fri, 12 Aug 2011 06:06:28 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e689cf4a - cassini/niu/sun*: Move the Sun drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/sun/Makefile#e689cf4a</link>
        <description>cassini/niu/sun*: Move the Sun driversMoves the Sun drivers into drivers/net/ethernet/sun/ and makethe necessary Kconfig and Makefile changes.Oliver Hartkopp &lt;socketcan@hartkopp.net&gt; suggested removing thesun* prefix on the driver names.  This type of change I willleave up to the driver maintainers.CC: Sam Creasey &lt;sammy@sammy.net&gt;CC: Adrian Sun &lt;asun@darksunrising.com&gt;CC: Benjamin Herrenscmidt &lt;benh@kernel.crashing.org&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/sun/Makefile</description>
        <pubDate>Fri, 13 May 2011 06:04:46 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
