<?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>612cf4d2 - selftests: clone3: Fix incorrect kernel headers search path</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/clone3/Makefile#612cf4d2</link>
        <description>selftests: clone3: Fix incorrect kernel headers search pathUse $(KHDR_INCLUDES) as lookup path for kernel headers. This preventsbuilding against kernel headers from the build environment in scenarioswhere kernel headers are installed into a specific output directory(O=...).Signed-off-by: Mathieu Desnoyers &lt;mathieu.desnoyers@efficios.com&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: linux-kselftest@vger.kernel.orgCc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: &lt;stable@vger.kernel.org&gt;  # 5.18+Acked-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Acked-by: Christian Brauner &lt;brauner@kernel.org&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/clone3/Makefile</description>
        <pubDate>Fri, 27 Jan 2023 13:57:24 +0000</pubDate>
        <dc:creator>Mathieu Desnoyers &lt;mathieu.desnoyers@efficios.com&gt;</dc:creator>
    </item>
<item>
        <title>88f4ede4 - selftests/clone3: Fix build error</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/clone3/Makefile#88f4ede4</link>
        <description>selftests/clone3: Fix build errorWhen compiling the selftests with the -std=gnu99 option the build canfail with.Following build error:  test_core.c: In function &#8216;test_cgcore_destroy&#8217;:  test_core.c:87:2: error: &#8216;for&#8217; loop initial declarations are only  allowed in C99 mode    for (int i = 0; i &lt; 10; i++) {    ^  test_core.c:87:2: note: use option -std=c99 or -std=gnu99 to compileAdd -std=gnu99 to the clone3 selftest Makefile to fix this.Signed-off-by: Xingxing Su &lt;suxingxing@loongson.cn&gt;Acked-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/clone3/Makefile</description>
        <pubDate>Fri, 27 Nov 2020 03:16:57 +0000</pubDate>
        <dc:creator>Xingxing Su &lt;suxingxing@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>1d27a0be - selftests: add clone3() CAP_CHECKPOINT_RESTORE test</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/clone3/Makefile#1d27a0be</link>
        <description>selftests: add clone3() CAP_CHECKPOINT_RESTORE testThis adds a test that changes its UID, uses capabilities toget CAP_CHECKPOINT_RESTORE and uses clone3() with set_tid tocreate a process with a given PID as non-root.Signed-off-by: Adrian Reber &lt;areber@redhat.com&gt;Link: https://lore.kernel.org/r/20200719100418.2112740-8-areber@redhat.com[christian.brauner@ubuntu.com: use TH_LOG() instead of ksft_print_msg()]Signed-off-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/clone3/Makefile</description>
        <pubDate>Sun, 19 Jul 2020 10:04:17 +0000</pubDate>
        <dc:creator>Adrian Reber &lt;areber@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>41585bbe - selftests: add tests for clone3() with *set_tid</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/clone3/Makefile#41585bbe</link>
        <description>selftests: add tests for clone3() with *set_tidThis tests clone3() with *set_tid to see if all desired PIDs are workingas expected. The tests are trying multiple invalid input parameters aswell as creating processes while specifying a certain PID in multiplePID namespaces at the same time.Additionally this moves common clone3() test code into clone3_selftests.h.Signed-off-by: Adrian Reber &lt;areber@redhat.com&gt;Acked-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;Link: https://lore.kernel.org/r/20191115123621.142252-2-areber@redhat.comSigned-off-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/clone3/Makefile</description>
        <pubDate>Fri, 15 Nov 2019 12:36:21 +0000</pubDate>
        <dc:creator>Adrian Reber &lt;areber@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>17a81069 - selftests: add tests for clone3()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/clone3/Makefile#17a81069</link>
        <description>selftests: add tests for clone3()This adds tests for clone3() with different values and sizesof struct clone_args.This selftest was initially part of of the clone3() with PID selftest.After that patch was almost merged Eugene sent out a couple of patchesto fix problems with these test.This commit now only contains the clone3() selftest after the LPCdecision to rework clone3() with PID to allow setting the PID inmultiple PID namespaces including all of Eugene&apos;s patches.Signed-off-by: Eugene Syromiatnikov &lt;esyr@redhat.com&gt;Signed-off-by: Adrian Reber &lt;areber@redhat.com&gt;Reviewed-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;Link: https://lore.kernel.org/r/20191112095851.811884-1-areber@redhat.comSigned-off-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/clone3/Makefile</description>
        <pubDate>Tue, 12 Nov 2019 09:58:51 +0000</pubDate>
        <dc:creator>Adrian Reber &lt;areber@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>de528723 - tests: test CLONE_CLEAR_SIGHAND</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/clone3/Makefile#de528723</link>
        <description>tests: test CLONE_CLEAR_SIGHANDTest that CLONE_CLEAR_SIGHAND resets signal handlers to SIG_DFL for thechild process and that CLONE_CLEAR_SIGHAND and CLONE_SIGHAND aremutually exclusive.Cc: Florian Weimer &lt;fweimer@redhat.com&gt;Cc: libc-alpha@sourceware.orgCc: linux-api@vger.kernel.orgSigned-off-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;Link: https://lore.kernel.org/r/20191014104538.3096-2-christian.brauner@ubuntu.com

            List of files:
            /linux-6.15/tools/testing/selftests/clone3/Makefile</description>
        <pubDate>Mon, 14 Oct 2019 10:45:38 +0000</pubDate>
        <dc:creator>Christian Brauner &lt;christian.brauner@ubuntu.com&gt;</dc:creator>
    </item>
</channel>
</rss>
