<?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 settings</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>4d4dfb20 - selftests: mptcp: increase timeout to 30 min</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/net/mptcp/settings#4d4dfb20</link>
        <description>selftests: mptcp: increase timeout to 30 minOn very slow environments -- e.g. when QEmu is used without KVM --,mptcp_join.sh selftest can take a bit more than 20 minutes. Bump thedefault timeout by 50% as it seems normal to take that long on someenvironments.When a debug kernel config is used, this selftest will take even longer,but that&apos;s certainly not a common test env to consider for the timeout.The Fixes tag that has been picked here is there simply to help havingthis patch backported to older stable versions. It is difficult to pointto the exact commit that made some env reaching the timeout from time totime.Fixes: d17b968b9876 (&quot;selftests: mptcp: increase timeout to 20 minutes&quot;)Cc: stable@vger.kernel.orgAcked-by: Paolo Abeni &lt;pabeni@redhat.com&gt;Signed-off-by: Matthieu Baerts (NGI0) &lt;matttbe@kernel.org&gt;Link: https://lore.kernel.org/r/20240131-upstream-net-20240131-mptcp-ci-issues-v1-5-4c1c11e571ff@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/net/mptcp/settings</description>
        <pubDate>Wed, 31 Jan 2024 21:49:50 +0000</pubDate>
        <dc:creator>Matthieu Baerts (NGI0) &lt;matttbe@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d17b968b - selftests: mptcp: increase timeout to 20 minutes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/net/mptcp/settings#d17b968b</link>
        <description>selftests: mptcp: increase timeout to 20 minutesWith the increase number of tests, one CI instance, using a debug kernelconfig and not recent hardware, takes around 10 minutes to execute theslowest MPTCP test: mptcp_join.sh.Even if most CIs don&apos;t take that long to execute these tests --typically max 10 minutes to run all selftests -- it will help some ofthem if the timeout is increased.The timeout could be disabled but it is always good to have an extrasafeguard, just in case.Please note that on slow public CIs with kernel debug settings, it hasbeen observed it can easily take up to 45 minutes to execute all testsin this very slow environment with other jobs running in parallel.The slowest test, mptcp_join.sh takes ~30 minutes in this case.In such environments, the selftests timeout set in the &apos;settings&apos; fileis disabled because this environment is known as being exceptionnallyslow. It has been decided not to take such exceptional environments intoaccount and set the timeout to 20min.Signed-off-by: Matthieu Baerts &lt;matthieu.baerts@tessares.net&gt;Signed-off-by: Mat Martineau &lt;mathew.j.martineau@linux.intel.com&gt;Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/net/mptcp/settings</description>
        <pubDate>Fri, 18 Feb 2022 03:03:05 +0000</pubDate>
        <dc:creator>Matthieu Baerts &lt;matthieu.baerts@tessares.net&gt;</dc:creator>
    </item>
<item>
        <title>9c2cadef - selftests: increase timeout to 10 min</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/net/mptcp/settings#9c2cadef</link>
        <description>selftests: increase timeout to 10 minOn slow systems with kernel debug settings, we can reach the currenttimeout when all tests are executed.Likely some tests need be improved to remove some &apos;sleep&apos; and wait(less) for a specific action. This can also improve stability.Signed-off-by: Matthieu Baerts &lt;matthieu.baerts@tessares.net&gt;Signed-off-by: Mat Martineau &lt;mathew.j.martineau@linux.intel.com&gt;Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/net/mptcp/settings</description>
        <pubDate>Mon, 25 Jan 2021 18:59:04 +0000</pubDate>
        <dc:creator>Matthieu Baerts &lt;matthieu.baerts@tessares.net&gt;</dc:creator>
    </item>
<item>
        <title>048d19d4 - mptcp: add basic kselftest for mptcp</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/net/mptcp/settings#048d19d4</link>
        <description>mptcp: add basic kselftest for mptcpAdd mptcp_connect tool:xmit two files back and forth between two processes, several netnamespaces including some adding delays, losses and reordering.Wrapper script tests that data was transmitted without corruption.The &quot;-c&quot; command line option for mptcp_connect.sh is there for debugging:The script will use tcpdump to create one .pcap file per test case, namedaccording to the namespaces, protocols, and connect address in use.For example, the first test case writes the capture tons1-ns1-MPTCP-MPTCP-10.0.1.1.pcap.The stderr output from tcpdump is printed after the test completes toshow tcpdump&apos;s &quot;packets dropped by kernel&quot; information.Also check that userspace can&apos;t create MPTCP sockets when mptcp.enabledsysctl is off.The &quot;-b&quot; option allows to tune/lower send buffer size.&quot;-m mmap&quot; can be used to test blocking io.  Default is non-blockingio using read/write/poll.Will run automatically on &quot;make kselftest&quot;.Note that the default timeout of 45 seconds is used even if there is a&quot;settings&quot; changing it to 450. 45 seconds should be enough in most casesbut this depends on the machine running the tests.A fix to correctly read the &quot;settings&quot; file has been proposed upstreambut not applied yet. It is not blocking the execution of these new testsbut it would be nice to have it:  https://patchwork.kernel.org/patch/11204935/Co-developed-by: Paolo Abeni &lt;pabeni@redhat.com&gt;Signed-off-by: Paolo Abeni &lt;pabeni@redhat.com&gt;Co-developed-by: Mat Martineau &lt;mathew.j.martineau@linux.intel.com&gt;Signed-off-by: Mat Martineau &lt;mathew.j.martineau@linux.intel.com&gt;Co-developed-by: Matthieu Baerts &lt;matthieu.baerts@tessares.net&gt;Signed-off-by: Matthieu Baerts &lt;matthieu.baerts@tessares.net&gt;Co-developed-by: Davide Caratti &lt;dcaratti@redhat.com&gt;Signed-off-by: Davide Caratti &lt;dcaratti@redhat.com&gt;Signed-off-by: Florian Westphal &lt;fw@strlen.de&gt;Signed-off-by: Christoph Paasch &lt;cpaasch@apple.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/net/mptcp/settings</description>
        <pubDate>Wed, 22 Jan 2020 00:56:29 +0000</pubDate>
        <dc:creator>Florian Westphal &lt;fw@strlen.de&gt;</dc:creator>
    </item>
</channel>
</rss>
