<?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>80fa614e - selftests: timers: Remove local NSEC_PER_SEC and USEC_PER_SEC defines</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#80fa614e</link>
        <description>selftests: timers: Remove local NSEC_PER_SEC and USEC_PER_SEC definesRemove local NSEC_PER_SEC and USEC_PER_SEC defines. Pick them up frominclude/vdso/time64.h. This requires -I $(top_srcdir) to the timersMakefile to include the include/vdso/time64.h.posix_timers test names the defines NSECS_PER_SEC and USECS_PER_SEC.Change posix_timers test references to the defines to match thedefines in the header file.Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Acked-by: John Stultz &lt;jstultz@google.com&gt;Acked-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Tue, 24 Sep 2024 00:30:36 +0000</pubDate>
        <dc:creator>Shuah Khan &lt;skhan@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>5c1e4f7e - selftests/timers: Turn off timeout setting</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#5c1e4f7e</link>
        <description>selftests/timers: Turn off timeout settingThe following 4 tests in timers can take longer than the default 45seconds that added in commit 852c8cbf34d3 (&quot;selftests/kselftest/runner.sh:Add 45 second timeout per test&quot;) to run:  * nsleep-lat - 2m7.350s  * set-timer-lat - 2m0.66s  * inconsistency-check - 1m45.074s  * raw_skew - 2m0.013sThus they will be marked as failed with the current 45s setting:  not ok 3 selftests: timers: nsleep-lat # TIMEOUT  not ok 4 selftests: timers: set-timer-lat # TIMEOUT  not ok 6 selftests: timers: inconsistency-check # TIMEOUT  not ok 7 selftests: timers: raw_skew # TIMEOUTDisable the timeout setting for timers can make these tests finishproperly:  ok 3 selftests: timers: nsleep-lat  ok 4 selftests: timers: set-timer-lat  ok 6 selftests: timers: inconsistency-check  ok 7 selftests: timers: raw_skewhttps://bugs.launchpad.net/bugs/1864626Fixes: 852c8cbf34d3 (&quot;selftests/kselftest/runner.sh: Add 45 second timeout per test&quot;)Signed-off-by: Po-Hsu Lin &lt;po-hsu.lin@canonical.com&gt;Acked-by: John Stultz &lt;john.stultz@linaro.org&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Wed, 18 Mar 2020 02:42:15 +0000</pubDate>
        <dc:creator>Po-Hsu Lin &lt;po-hsu.lin@canonical.com&gt;</dc:creator>
    </item>
<item>
        <title>7d4e591b - selftests: timers: use LDLIBS instead of LDFLAGS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#7d4e591b</link>
        <description>selftests: timers: use LDLIBS instead of LDFLAGSposix_timers fails to build due to undefined reference errors: aarch64-linaro-linux-gcc --sysroot=/build/tmp-rpb-glibc/sysroots/hikey -O2 -pipe -g -feliminate-unused-debug-types -O3 -Wl,-no-as-needed -Wall -DKTEST  -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -lrt -lpthread posix_timers.c -o /build/tmp-rpb-glibc/work/hikey-linaro-linux/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/timers/posix_timers /tmp/cc1FTZzT.o: In function `check_timer_create&apos;: /usr/src/debug/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/timers/posix_timers.c:157: undefined reference to `timer_create&apos; /usr/src/debug/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/timers/posix_timers.c:170: undefined reference to `timer_settime&apos; collect2: error: ld returned 1 exit statusIt&apos;s GNU Make and linker specific.The default Makefile rule looks like:$(CC) $(CFLAGS) $(LDFLAGS) $@ $^ $(LDLIBS)When linking is done by gcc itself, no issue, but when it needs to be passedto proper ld, only LDLIBS follows and then ld cannot know what libs to linkwith.More detail:https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.htmlLDFLAGSExtra flags to give to compilers when they are supposed to invoke the linker,&#8216;ld&#8217;, such as -L. Libraries (-lfoo) should be added to the LDLIBS variableinstead.LDLIBSLibrary flags or names given to compilers when they are supposed to invoke thelinker, &#8216;ld&#8217;. LOADLIBES is a deprecated (but still supported) alternative toLDLIBS. Non-library linker flags, such as -L, should go in the LDFLAGSvariable.https://lkml.org/lkml/2010/2/10/362tools/perf: libraries must come after objectsLink order matters, use LDLIBS instead of LDFLAGS to properly link againstlibpthread.Signed-off-by: Denys Dmytriyenko &lt;denys@ti.com&gt;Signed-off-by: Fathi Boudra &lt;fathi.boudra@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuah@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Wed, 16 Jan 2019 17:43:20 +0000</pubDate>
        <dc:creator>Fathi Boudra &lt;fathi.boudra@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>a12ab9e1 - selftests: move RTC tests to rtc subfolder</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#a12ab9e1</link>
        <description>selftests: move RTC tests to rtc subfolderMove the RTC tests out of the timers folder as they are mostly unrelated.Keep rtcpie in timers as it only test hrtimers.Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;Signed-off-by: Shuah Khan (Samsung OSG) &lt;shuah@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Thu, 19 Apr 2018 12:50:29 +0000</pubDate>
        <dc:creator>Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;</dc:creator>
    </item>
<item>
        <title>843b20bc - selftests: timers: move PIE tests out of rtctest</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#843b20bc</link>
        <description>selftests: timers: move PIE tests out of rtctestSince commit 6610e0893b8bc (&quot;RTC: Rework RTC code to use timerqueue forevents&quot;), PIE are completely handled using hrtimers, without actually usingany underlying hardware RTC.Move PIE testing out of rtctest. It still depends on the presence of an RTC(to access the device file) but doesn&apos;t depend on it actually working.Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;Signed-off-by: Shuah Khan (Samsung OSG) &lt;shuah@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Thu, 19 Apr 2018 12:50:27 +0000</pubDate>
        <dc:creator>Alexandre Belloni &lt;alexandre.belloni@bootlin.com&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/timers/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/timers/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>77d802e2 - selftests: change lib.mk RUN_TESTS to take test list as an argument</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#77d802e2</link>
        <description>selftests: change lib.mk RUN_TESTS to take test list as an argumentChange lib.mk RUN_TESTS to take test list as an argument. This willallow it to be called from individual test makefiles to run additionaltests that aren&apos;t suitable for a default kselftest run. As an example,timers test includes destructive tests that aren&apos;t included in thecommon run_tests target.Change times/Makefile to use RUN_TESTS call with destructive test listas an argument instead of using its own RUN_TESTS target.Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Wed, 23 Aug 2017 20:42:44 +0000</pubDate>
        <dc:creator>Shuah Khan &lt;shuahkh@osg.samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>475c57cc - selftests: timers: remove rtctest_setdate from run_destructive_tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#475c57cc</link>
        <description>selftests: timers: remove rtctest_setdate from run_destructive_testsRemove rtctest_setdate from run_destructive_tests target. Leave it inTEST_GEN_PROGS_EXTENDED to be included in the install targets.Suggested-by: John Stultz &lt;john.stultz@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;Reviewed-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Tue, 22 Aug 2017 20:10:03 +0000</pubDate>
        <dc:creator>Shuah Khan &lt;shuahkh@osg.samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>df9c011c - selftests: timers: Fix run_destructive_tests target to handle skipped tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#df9c011c</link>
        <description>selftests: timers: Fix run_destructive_tests target to handle skipped testsWhen a test exits with skip exit code of 4, &quot;make run_destructive_tests&quot;halts testing. Fix run_destructive_tests target to handle error exit codes.Cc: stable &lt;stable@vger.kernel.org&gt; [4.13+]Reported-by: John Stultz &lt;john.stultz@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Thu, 17 Aug 2017 22:34:43 +0000</pubDate>
        <dc:creator>Shuah Khan &lt;shuahkh@osg.samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>b8410650 - selftests: timers: drop support for !KTEST case</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#b8410650</link>
        <description>selftests: timers: drop support for !KTEST caseThere is no need to keep timers tests in sync with external timersrepo. Drop support for !KTEST to support for building and runningtimers tests without kselftest framework.Reference: https://lkml.org/lkml/2017/8/10/952Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;Acked-by: John Stultz &lt;john.stultz@linaro.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Fri, 11 Aug 2017 16:11:42 +0000</pubDate>
        <dc:creator>Shuah Khan &lt;shuahkh@osg.samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>c96396f0 - tools: timer: add rtctest_setdate</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#c96396f0</link>
        <description>tools: timer: add rtctest_setdateThis tool allow to set directly the time and date to a RTC device.Unlike other tools isn&apos;t doens&apos;t use &quot;struct timeval&quot; or &quot;time_t&quot;so it is safe for 32bits platforms when testing for y2038/2106 bug.Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@free-electrons.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Mon, 19 Jun 2017 09:36:20 +0000</pubDate>
        <dc:creator>Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>76739256 - kselftests: timers: Add test for frequency step</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#76739256</link>
        <description>kselftests: timers: Add test for frequency stepThis test checks the response of the system clock to frequencysteps made with adjtimex(). The frequency error and stability ofthe CLOCK_MONOTONIC clock relative to the CLOCK_MONOTONIC_RAW clockis measured in two intervals following the step. The test fails ifvalues from the second interval exceed specified limits.Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Ingo Molnar &lt;mingo@kernel.org&gt;Cc: Miroslav Lichvar &lt;mlichvar@redhat.com&gt;Cc: Richard Cochran &lt;richardcochran@gmail.com&gt;Cc: Prarit Bhargava &lt;prarit@redhat.com&gt;Cc: Stephen Boyd &lt;stephen.boyd@linaro.org&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Signed-off-by: Miroslav Lichvar &lt;mlichvar@redhat.com&gt;Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Fri, 09 Jun 2017 11:43:17 +0000</pubDate>
        <dc:creator>Miroslav Lichvar &lt;mlichvar@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>1fb95c69 - selftests/timers: Spelling s/privledges/privileges/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#1fb95c69</link>
        <description>selftests/timers: Spelling s/privledges/privileges/Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Fri, 17 Feb 2017 15:41:03 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>5a2d4a57 - selftests: remove CROSS_COMPILE in dedicated Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#5a2d4a57</link>
        <description>selftests: remove CROSS_COMPILE in dedicated MakefileAfter previous clean up patches, memfd and timers could getCROSS_COMPILE from tools/testing/selftest/lib.mk. There is no need topreserve these definition. So, this patch remove them.Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;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/timers/Makefile</description>
        <pubDate>Tue, 29 Nov 2016 11:55:50 +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/timers/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/timers/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>1a77e2bd - kselftests: timers: Add set-tz test case</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#1a77e2bd</link>
        <description>kselftests: timers: Add set-tz test caseMika Westerberg reported a erroneous change in the errorchecking of settimeofday, so I wanted to add a test to ensurewe don&apos;t trip over this again.Cc: Mika Westerberg &lt;mika.westerberg@linux.intel.com&gt;Cc: Baolin Wang &lt;baolin.wang@linaro.org&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;Cc: Arnd Bergmann &lt;arnd@arndb.de&gt;Cc: Ingo Molnar &lt;mingo@kernel.org&gt;Cc: Richard Cochran &lt;richardcochran@gmail.com&gt;Cc: Prarit Bhargava &lt;prarit@redhat.com&gt;Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Wed, 01 Jun 2016 18:53:27 +0000</pubDate>
        <dc:creator>John Stultz &lt;john.stultz@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>6035519f - timers, kselftest: Add &apos;adjtick&apos; test to validate adjtimex() tick adjustments</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#6035519f</link>
        <description>timers, kselftest: Add &apos;adjtick&apos; test to validate adjtimex() tick adjustmentsRecently a kernel side NTP bug was fixed via the following commit:  2619d7e9c92d (&quot;time: Fix timekeeping_freqadjust()&apos;s incorrect use of abs() instead of abs64()&quot;)When the bug was reported it was difficult to detect, except bytweaking the adjtimex tick value, and noticing how quickly theadjustment took:	https://lkml.org/lkml/2015/9/1/488Thus this patch introduces a new test which manipulates theadjtimex tick value and validates that the results are what weexpect.Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;Cc: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Cc: Miroslav Lichvar &lt;mlichvar@redhat.com&gt;Cc: Nuno Gon&#231;alves &lt;nunojpg@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Prarit Bhargava &lt;prarit@redhat.com&gt;Cc: Richard Cochran &lt;richardcochran@gmail.com&gt;Cc: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Link: http://lkml.kernel.org/r/1444094217-20258-1-git-send-email-john.stultz@linaro.org[ Tidied up the code and the changelog a bit. ]Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Tue, 06 Oct 2015 01:16:57 +0000</pubDate>
        <dc:creator>John Stultz &lt;john.stultz@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>4a5fd815 - Documentation, split up rtc.txt into documentation and test file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#4a5fd815</link>
        <description>Documentation, split up rtc.txt into documentation and test fileThis patch splits rtc.txt into two separate files, one for thedocumentation itself, and the other for the rtctest.c file.  The rtctestfile is moved into the kernel tools/testing/selftests/timers directory.This will make automated testing easier.  Note that the only difference inthe rtc.txt file is that the location of the rtctest.c file has changed.Signed-off-by: Prarit Bhargava &lt;prarit@redhat.com&gt;Acked-by: Jonathan Corbet &lt;corbet@lwn.net&gt;Acked-by: John Stultz &lt;john.stultz@linaro.org&gt;Cc: corbet@lwn.netCc: rtc-linux@googlegroups.comCc: linux-doc@vger.kernel.orgCc: a.zummo@towertech.itCc: prarit@redhat.comCc: john.stultz@linaro.orgCc: shuahkh@osg.samsung.comSigned-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Mon, 23 Mar 2015 20:32:09 +0000</pubDate>
        <dc:creator>Prarit Bhargava &lt;prarit@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>5744de54 - selftests/timers: Use shared logic to run and install tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#5744de54</link>
        <description>selftests/timers: Use shared logic to run and install testsChange the timers Makefile to make use of shared run and install logicin lib.mk. Destructive tests are installed but not run by default.Add a new variable, TEST_PROGS_EXTENDED, which is a list of extraprograms to install, but which are not run by the default run_testslogic.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/timers/Makefile</description>
        <pubDate>Thu, 19 Mar 2015 00:20:40 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>0d02a753 - selftests/timers: Add set-2038 test from timetest suite</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/timers/Makefile#0d02a753</link>
        <description>selftests/timers: Add set-2038 test from timetest suiteAdds the set-2038 test which sets the time to near-edge caseslike the start and end of the 32 bit epoch and checks thattime behaves properly. There is also a dangerous mode, whichlets the clock roll over past 2038 on 32bit systems, whichon some older kernels will cause system hangs.Cc: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;Cc: Prarit Bhargava &lt;prarit@redhat.com&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Richard Cochran &lt;richardcochran@gmail.com&gt;Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;Tested-by: Prarit Bhargava &lt;prarit@redhat.com&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/timers/Makefile</description>
        <pubDate>Thu, 12 Mar 2015 00:40:14 +0000</pubDate>
        <dc:creator>John Stultz &lt;john.stultz@linaro.org&gt;</dc:creator>
    </item>
</channel>
</rss>
