<?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>dda32e37 - selftests/powerpc: Install tests in sub-directories</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#dda32e37</link>
        <description>selftests/powerpc: Install tests in sub-directoriesThe sources for the powerpc selftests are arranged into sub-directories.However when the tests are built and installed, the sub-directories aresquashed, losing the structure.For example, with the current code the result of installing the selftests is:  $ tree tools/testing/selftests/kselftest_install  tools/testing/selftests/kselftest_install  &#9500;&#9472;&#9472; kselftest  &#9474;&#160;&#160; &#9500;&#9472;&#9472; ktap_helpers.sh  &#9474;&#160;&#160; &#9500;&#9472;&#9472; module.sh  &#9474;&#160;&#160; &#9500;&#9472;&#9472; prefix.pl  &#9474;&#160;&#160; &#9492;&#9472;&#9472; runner.sh  &#9500;&#9472;&#9472; kselftest-list.txt  &#9500;&#9472;&#9472; powerpc  &#9474;&#160;&#160; &#9500;&#9472;&#9472; alignment_handler  &#9474;&#160;&#160; &#9500;&#9472;&#9472; attr_test  &#9474;&#160;&#160; &#9500;&#9472;&#9472; back_to_back_ebbs_test  &#9474;&#160;&#160; &#9500;&#9472;&#9472; bad_accesses  &#9474;&#160;&#160; &#9500;&#9472;&#9472; bhrb_filter_map_test  &#9474;&#160;&#160; &#9500;&#9472;&#9472; bhrb_no_crash_wo_pmu_test  &#9474;&#160;&#160; &#9500;&#9472;&#9472; blacklisted_events_test  &#9474;&#160;&#160; &#9500;&#9472;&#9472; cache_shape  &#9474;&#160;&#160; &#9500;&#9472;&#9472; close_clears_pmcc_test  &#9474;&#160;&#160; &#9500;&#9472;&#9472; context_switch  &#9474;&#160;&#160; &#9500;&#9472;&#9472; copy_first_unaligned  ...  &#9474;&#160;&#160; &#9500;&#9472;&#9472; settings  ...  &#9474;&#160;&#160; &#9492;&#9472;&#9472; wild_bctr  &#9492;&#9472;&#9472; run_kselftest.shAll the powerpc tests are squashed into the single powerpc directory. Inparticular, note that there is a single `settings` file, even thoughthere are multiple settings files in the powerpc selftest sources. Oneof the settings files ends up installed, depending on install order,even if they have different contents.Similarly if there were two tests with the same name in differentsub-directories they would clobber each other.Fix it by replicating the directory structure of the source tree intothe install directory. The result being for example:  $ tree tools/testing/selftests/kselftest_install  tools/testing/selftests/kselftest_install  &#9500;&#9472;&#9472; kselftest  &#9474;&#160;&#160; &#9500;&#9472;&#9472; ktap_helpers.sh  &#9474;&#160;&#160; &#9500;&#9472;&#9472; module.sh  &#9474;&#160;&#160; &#9500;&#9472;&#9472; prefix.pl  &#9474;&#160;&#160; &#9492;&#9472;&#9472; runner.sh  &#9500;&#9472;&#9472; kselftest-list.txt  &#9500;&#9472;&#9472; powerpc  &#9474;&#160;&#160; &#9500;&#9472;&#9472; alignment  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; alignment_handler  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9492;&#9472;&#9472; copy_first_unaligned  &#9474;&#160;&#160; &#9500;&#9472;&#9472; benchmarks  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; context_switch  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; exec_target  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; fork  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; futex_bench  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; gettimeofday  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; mmap_bench  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; null_syscall  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9492;&#9472;&#9472; settings  ...  &#9474;&#160;&#160; &#9500;&#9472;&#9472; eeh  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; eeh-basic.sh  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9500;&#9472;&#9472; eeh-functions.sh  &#9474;&#160;&#160; &#9474;&#160;&#160; &#9492;&#9472;&#9472; settings  ...  &#9474;&#160;&#160; &#9492;&#9472;&#9472; vphn  &#9474;&#160;&#160;     &#9492;&#9472;&#9472; test-vphn  &#9492;&#9472;&#9472; run_kselftest.shNote multiple settings files in different sub-directories.This change also has the effect of changing the names of the tests fromthe point of view of the kselftest runner. Before the tests are namedeg:  powerpc:copy_first_unaligned  powerpc:cache_shape  powerpc:reg_access_testAfter, the test collection names include the sub-directory:  powerpc/alignment:copy_first_unaligned  powerpc/cache_shape:cache_shape  powerpc/pmu/ebb:reg_access_testThat means whereas previously all powerpc tests could be run with:  $ ./run_kselftest.sh -c powerpcAfter the change it&apos;s necessary to pass a regex that matches all powerpcentries, eg:  $ ./run_kselftest.sh -c &quot;powerpc.*&quot;The latter form also works before and after the change.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240422133453.1793988-2-mpe@ellerman.id.au

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Mon, 22 Apr 2024 13:34:53 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>822a0495 - selftests/powerpc: Convert pmu Makefile to for loop style</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#822a0495</link>
        <description>selftests/powerpc: Convert pmu Makefile to for loop styleThe pmu Makefile has grown more sub directories over the years. Ratherthan open coding the rules for each subdir, use for loops.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240422133453.1793988-1-mpe@ellerman.id.au

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Mon, 22 Apr 2024 13:34:52 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>5553a793 - selftests/powerpc: Add flags.mk to support pmu buildable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#5553a793</link>
        <description>selftests/powerpc: Add flags.mk to support pmu buildableWhen running `make -C powerpc/pmu run_tests` from top level selftestsdirectory, currently this error is being reported:  make: Entering directory &apos;/home/maddy/linux/tools/testing/selftests/powerpc/pmu&apos;  Makefile:40: warning: overriding recipe for target &apos;emit_tests&apos;  ../../lib.mk:111: warning: ignoring old recipe for target &apos;emit_tests&apos;  gcc -m64    count_instructions.c ../harness.c event.c lib.c ../utils.c loop.S  -o /home/maddy/selftest_output//count_instructions  In file included from count_instructions.c:13:  event.h:12:10: fatal error: utils.h: No such file or directory  12 | #include &quot;utils.h&quot;    |          ^~~~~~~~~  compilation terminated.This is due to missing of include path in CFLAGS. That is, CFLAGS andGIT_VERSION macros are defined in the powerpc/ folder Makefile whichin this case is not involved.To address the failure in case of executing specific sub-folder testdirectly, a new rule file has been addded by the patch called &quot;flags.mk&quot;under selftest/powerpc/ folder and is linked to all the Makefile ofpowerpc/pmu sub-folders.Reported-by: Sachin Sant &lt;sachinp@linux.ibm.com&gt;Signed-off-by: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Tested-by: Sachin Sant &lt;sachinp@linux.ibm.com&gt;[mpe: Fixup ifeq, make GIT_VERSION simply expanded to avoid re-executing git describe]Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240229093711.581230-2-maddy@linux.ibm.com

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Thu, 29 Feb 2024 09:37:10 +0000</pubDate>
        <dc:creator>Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>58b33e78 - selftests/powerpc: Fix emit_tests to work with run_kselftest.sh</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#58b33e78</link>
        <description>selftests/powerpc: Fix emit_tests to work with run_kselftest.shIn order to use run_kselftest.sh the list of tests must be emitted topopulate kselftest-list.txt.The powerpc Makefile is written to use EMIT_TESTS. But support forEMIT_TESTS was dropped in commit d4e59a536f50 (&quot;selftests: Use runner.shfor emit targets&quot;). Although prior to that commit a548de0fe8e1(&quot;selftests: lib.mk: add test execute bit check to EMIT_TESTS&quot;) hadalready broken run_kselftest.sh for powerpc due to the executable checkusing the wrong path.It can be fixed by replacing the EMIT_TESTS definitions with actualemit_tests rules in the powerpc Makefiles. This makes run_kselftest.shable to run powerpc tests:  $ cd linux  $ export ARCH=powerpc  $ export CROSS_COMPILE=powerpc64le-linux-gnu-  $ make headers  $ make -j -C tools/testing/selftests install  $ grep -c &quot;^powerpc&quot; tools/testing/selftests/kselftest_install/kselftest-list.txt  182Fixes: d4e59a536f50 (&quot;selftests: Use runner.sh for emit targets&quot;)Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20230921072623.828772-1-mpe@ellerman.id.au

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Thu, 21 Sep 2023 07:26:10 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>4ecd0868 - selftests/powerpc: Pass make context to children</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#4ecd0868</link>
        <description>selftests/powerpc: Pass make context to childrenMake supports passing the &apos;jobserver&apos; (parallel make support) to childinvocations of make when either	1. The target command uses $(MAKE) directly	2. The command starts with &apos;+&apos;This context is not passed through expansions that result in $(MAKE), sothe macros used in several places fail to pass on the jobserver context.Warnings are also raised by the child mentioning this.Prepend macros lines that invoke $(MAKE) with &apos;+&apos; to allow passing thejobserver context to these children.Signed-off-by: Benjamin Gray &lt;bgray@linux.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20230228000709.124727-3-bgray@linux.ibm.com

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Tue, 28 Feb 2023 00:07:08 +0000</pubDate>
        <dc:creator>Benjamin Gray &lt;bgray@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>69608683 - selftests/powerpc: Use CLEAN macro to fix make warning</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#69608683</link>
        <description>selftests/powerpc: Use CLEAN macro to fix make warningThe CLEAN macro was added in 337f1e36 to prevent the    Makefile:50: warning: overriding recipe for target &apos;clean&apos;    ../../lib.mk:124: warning: ignoring old recipe for target &apos;clean&apos;style warnings. Expand it&apos;s use to fix another case of redefining atarget directly.Signed-off-by: Benjamin Gray &lt;bgray@linux.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20230228000709.124727-2-bgray@linux.ibm.com

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Tue, 28 Feb 2023 00:07:07 +0000</pubDate>
        <dc:creator>Benjamin Gray &lt;bgray@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>0a110a4b - selftests/powerpc/pmu: Add support for perf event code tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#0a110a4b</link>
        <description>selftests/powerpc/pmu: Add support for perf event code testsAdd new folder for enabling perf event code tests which includeschecking for group constraints, valid/invalid events, also checks forevent excludes, alternatives so on. A new folder &quot;event_code_tests&quot;, iscreated under &quot;selftests/powerpc/pmu&quot;.Also updates the corresponding Makefiles in &quot;selftests/powerpc&quot; and&quot;event_code_tests&quot; folder.Signed-off-by: Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20220610134113.62991-16-atrajeev@linux.vnet.ibm.com

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Fri, 10 Jun 2022 13:40:53 +0000</pubDate>
        <dc:creator>Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>c315669e - selftests/powerpc/pmu: Add support for perf sampling tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#c315669e</link>
        <description>selftests/powerpc/pmu: Add support for perf sampling testsAdd support functions for enabling perf sampling test in a new folder&quot;sampling_tests&quot; under &quot;selftests/powerpc/pmu&quot;. This includes supportfunctions for allocating and processing the mmap buffer. These functionsare added/defined in &quot;sampling_tests/misc.*&quot; files.Also updates the corresponding Makefiles in &quot;selftests/powerpc&quot; and&quot;sampling_tests&quot; folder.Signed-off-by: Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;[mpe: Drop unneeded bits from the Makefile]Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20220127072012.662451-3-kjain@linux.ibm.com

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Thu, 27 Jan 2022 07:19:54 +0000</pubDate>
        <dc:creator>Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>7481cad4 - selftests/powerpc: Add a test of counting larx/stcx</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#7481cad4</link>
        <description>selftests/powerpc: Add a test of counting larx/stcxThis is based on the count_instructions test.However this one also counts the number of failed stcx&apos;s, and inconjunction with knowing the size of the stcx loop, can calculate thetotal number of instructions executed even in the face ofnon-deterministic stcx failures.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20200426114410.3917383-1-mpe@ellerman.id.au

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Sun, 26 Apr 2020 11:44:10 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>7e0cf1c9 - selftests/powerpc: Fix Makefiles for headers_install change</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#7e0cf1c9</link>
        <description>selftests/powerpc: Fix Makefiles for headers_install changeCommit b2d35fa5fc80 (&quot;selftests: add headers_install to lib.mk&quot;)introduced a requirement that Makefiles more than one level below theselftests directory need to define top_srcdir, but it didn&apos;t updateany of the powerpc Makefiles.This broke building all the powerpc selftests with eg:  make[1]: Entering directory &apos;/src/linux/tools/testing/selftests/powerpc&apos;  BUILD_TARGET=/src/linux/tools/testing/selftests/powerpc/alignment; mkdir -p $BUILD_TARGET; make OUTPUT=$BUILD_TARGET -k -C alignment all  make[2]: Entering directory &apos;/src/linux/tools/testing/selftests/powerpc/alignment&apos;  ../../lib.mk:20: ../../../../scripts/subarch.include: No such file or directory  make[2]: *** No rule to make target &apos;../../../../scripts/subarch.include&apos;.  make[2]: Failed to remake makefile &apos;../../../../scripts/subarch.include&apos;.  Makefile:38: recipe for target &apos;alignment&apos; failedFix it by setting top_srcdir in the affected Makefiles.Fixes: b2d35fa5fc80 (&quot;selftests: add headers_install to lib.mk&quot;)Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Fri, 28 Sep 2018 04:53:18 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<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/tools/testing/selftests/powerpc/pmu/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/tools/testing/selftests/powerpc/pmu/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>68bd42d9 - selftests/powerpc: Fix remaining fallout from recent changes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#68bd42d9</link>
        <description>selftests/powerpc: Fix remaining fallout from recent changesIn benchmarks we need to use $(TEST_GEN_PROGS) after we include lib.mk,because lib.mk does the substitution to add $(OUTPUT).In math the vmx and fpu names were typoed so they no longer matchedcorrectly, put back the &apos;v&apos; and &apos;f&apos;.In tm we need to substitute $(OUTPUT) into SIGNAL_CONTEXT_CHK_TESTS sothat the rule matches.In pmu there is an extraneous &apos;:&apos; on the end of $$BUILD_TARGET for theclean and install rules, which breaks the logic in the child Makefiles.Fixes: a8ba798bc8ec (&quot;selftests: enable O and KBUILD_OUTPUT&quot;)Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Thu, 09 Feb 2017 08:56:30 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>a8ba798b - selftests: enable O and KBUILD_OUTPUT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#a8ba798b</link>
        <description>selftests: enable O and KBUILD_OUTPUTEnable O and KBUILD_OUTPUT for kselftest. User could compile kselftestto another directory by passing O or KBUILD_OUTPUT. And O is highpriority than KBUILD_OUTPUT.Signed-off-by: Bamvor Jian Zhang &lt;bamvor.zhangjian@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Tue, 29 Nov 2016 11:55:52 +0000</pubDate>
        <dc:creator>bamvor.zhangjian@huawei.com &lt;bamvor.zhangjian@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>88baa78d - selftests: remove duplicated all and clean target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#88baa78d</link>
        <description>selftests: remove duplicated all and clean targetCurrently, kselftest use TEST_PROGS, TEST_PROGS_EXTENDED, TEST_FILES toindicate the test program, extended test program and test files. It iseasy to understand the purpose of these files. But mix of compiled anduncompiled files lead to duplicated &quot;all&quot; and &quot;clean&quot; targets.In order to remove the duplicated targets, introduce TEST_GEN_PROGS,TEST_GEN_PROGS_EXTENDED, TEST_GEN_FILES to indicate the compiledobjects.Also, the later patch will make use of TEST_GEN_XXX to redirect thesefiles to output directory indicated by KBUILD_OUTPUT or O.And add this changes to &quot;Contributing new tests(details)&quot; ofDocumentation/kselftest.txt.Signed-off-by: Bamvor Jian Zhang &lt;bamvor.zhangjian@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Tue, 29 Nov 2016 11:55:47 +0000</pubDate>
        <dc:creator>bamvor.zhangjian@huawei.com &lt;bamvor.zhangjian@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>d1301afd - selftests/powerpc: Move pick_online_cpu() up into utils.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#d1301afd</link>
        <description>selftests/powerpc: Move pick_online_cpu() up into utils.cWe want to use this in another test, so make it available at the top ofthe powerpc selftests tree.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Wed, 16 Dec 2015 07:59:31 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>fcb45ec0 - selftests/powerpc: Move get_auxv_entry() into utils.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#fcb45ec0</link>
        <description>selftests/powerpc: Move get_auxv_entry() into utils.cThis doesn&apos;t really belong in harness.c, it&apos;s a helper function. So moveit into utils.c.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Tue, 24 Nov 2015 02:05:38 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>2fa30fe9 - selftests/powerpc: Fix the pmu install rule</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#2fa30fe9</link>
        <description>selftests/powerpc: Fix the pmu install ruleMy patch to add install support for the powerpc selftests had a typo,leading to the three tests in the pmu directory itself not beinginstalled.Fixes: 6faeeea44b84 (&quot;selftests: Add install support for the powerpc tests&quot;)Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Fri, 01 May 2015 01:10:09 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>6faeeea4 - selftests: Add install support for the powerpc tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#6faeeea4</link>
        <description>selftests: Add install support for the powerpc testsThe bulk of the selftests are actually below the powerpc sub directory.This adds support for installing them, when on a powerpc machine, or ifARCH and CROSS_COMPILE are set appropriately.This is a little more complicated because of the sub directory structureunder powerpc, but much of the common logic in lib.mk is still used. Thenet effect of the patch is still a reduction in code.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Wed, 11 Mar 2015 04:06:01 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>f929a464 - selftests/powerpc: Add test of per-event excludes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#f929a464</link>
        <description>selftests/powerpc: Add test of per-event excludesSigned-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Signed-off-by: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Wed, 23 Jul 2014 07:31:40 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>86450f20 - selftests/powerpc: Count instructions under scheduler pressure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile#86450f20</link>
        <description>selftests/powerpc: Count instructions under scheduler pressureHave a task eat some cpu while we are counting instructions to createsome scheduler pressure. The idea being to try and unearth any bugs wehave in counting that only appear when context switching is happening.Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Signed-off-by: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/powerpc/pmu/Makefile</description>
        <pubDate>Wed, 23 Jul 2014 07:31:35 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
</channel>
</rss>
