<?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>788e52e2 - selftests: drv-net: Test queue xsk attribute</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#788e52e2</link>
        <description>selftests: drv-net: Test queue xsk attributeTest that queues which are used for AF_XDP have the xsk nest attribute.The attribute is currently empty, but its existence means the AF_XDP isbeing used for the queue. Enable CONFIG_XDP_SOCKETS forselftests/drivers/net tests, as well.Signed-off-by: Joe Damato &lt;jdamato@fastly.com&gt;Suggested-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Link: https://patch.msgid.link/20250214211255.14194-4-jdamato@fastly.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Fri, 14 Feb 2025 21:12:31 +0000</pubDate>
        <dc:creator>Joe Damato &lt;jdamato@fastly.com&gt;</dc:creator>
    </item>
<item>
        <title>12fd83ca - netconsole: selftest: test for sysdata CPU</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#12fd83ca</link>
        <description>netconsole: selftest: test for sysdata CPUAdd a new selftest to verify that the netconsole module correctlyhandles CPU runtime data in sysdata. The test validates three scenarios:1. Basic CPU sysdata functionality - verifies that cpu=X is appended to   messages2. CPU sysdata with userdata - ensures CPU data works alongside userdata3. Disabled CPU sysdata - confirms no CPU data is included when disabledThe test uses taskset to control which CPU sends messages and verifiesthe reported CPU matches the one used. This helps ensure that netconsoleaccurately tracks and reports the originating CPU of messages.Signed-off-by: Breno Leitao &lt;leitao@debian.org&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Thu, 06 Feb 2025 11:05:58 +0000</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>d5fdfe48 - netconsole: selftest: Add test for fragmented messages</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#d5fdfe48</link>
        <description>netconsole: selftest: Add test for fragmented messagesAdd a new selftest to verify netconsole&apos;s handling of messages thatexceed the packet size limit and require fragmentation. The test sendsmessages with varying sizes and userdata, validating that:1. Large messages are correctly fragmented and reassembled2. Userdata fields are properly preserved across fragments3. Messages work correctly with and without kernel release version   appendingThe test creates a networking environment using netdevsim, sendsmessages through /dev/kmsg, and verifies the received fragments maintainmessage integrity.Signed-off-by: Breno Leitao &lt;leitao@debian.org&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Link: https://patch.msgid.link/20250203-netcons_frag_msgs-v1-1-5bc6bedf2ac0@debian.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Mon, 03 Feb 2025 19:04:15 +0000</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>cfd70e3e - selftest: net-drv: hds: add test for HDS feature</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#cfd70e3e</link>
        <description>selftest: net-drv: hds: add test for HDS featureHDS/HDS-thresh features were updated/implemented. so add some tests forthese features.HDS tests are the same with `ethtool -G eth0 tcp-data-split &lt;on | off |auto &gt;` but `auto` depends on driver specification.So, it doesn&apos;t include `auto` case.HDS-thresh tests are same with `ethtool -G eth0 hds-thresh &lt;0 - MAX&gt;`It includes both 0 and MAX cases. It also includes exceed case, MAX + 1.Signed-off-by: Taehee Yoo &lt;ap420073@gmail.com&gt;Link: https://patch.msgid.link/20250114142852.3364986-11-ap420073@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Tue, 14 Jan 2025 14:28:52 +0000</pubDate>
        <dc:creator>Taehee Yoo &lt;ap420073@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>daea6d23 - netconsole: selftest: verify userdata entry limit</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#daea6d23</link>
        <description>netconsole: selftest: verify userdata entry limitAdd a new selftest for netconsole that tests the userdata entry limitfunctionality. The test performs two key verifications:1. Create MAX_USERDATA_ITEMS (16) userdata entries successfully2. Confirm that attempting to create an additional userdata entry failsThe selftest script uses the netcons library and checks the behaviorby attempting to create entries beyond the maximum allowed limit.Signed-off-by: Breno Leitao &lt;leitao@debian.org&gt;Tested-by: Simon Horman &lt;horms@kernel.org&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Link: https://patch.msgid.link/20250108-netcons_overflow_test-v3-4-3d85eb091bec@debian.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Wed, 08 Jan 2025 11:50:28 +0000</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>61f51cc6 - netconsole: selftest: Split the helpers from the selftest</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#61f51cc6</link>
        <description>netconsole: selftest: Split the helpers from the selftestSplit helper functions from the netconsole basic test into a separatelibrary file to enable reuse across different netconsole tests. Thischange only moves the existing helper functions to lib/sh/lib_netcons.shwhile preserving the same test functionality.The helpers provide common functions for:- Setting up network namespaces and interfaces- Managing netconsole dynamic targets- Setting user data- Handling test dependencies- Cleanup operationsDo not make any change in the code, other than the mechanicalseparation.Signed-off-by: Breno Leitao &lt;leitao@debian.org&gt;Tested-by: Simon Horman &lt;horms@kernel.org&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Link: https://patch.msgid.link/20250108-netcons_overflow_test-v3-2-3d85eb091bec@debian.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Wed, 08 Jan 2025 11:50:26 +0000</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>ec35b0c5 - selftests: drv-net: add missing trailing backslash</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#ec35b0c5</link>
        <description>selftests: drv-net: add missing trailing backslashCommit b3ea416419c8 (&quot;testing: net-drv: add basic shaper test&quot;)removed the trailing backslash from the last entry. We havea terminating comment here to avoid having to modify the lastline when adding at the end.Reviewed-by: Joe Damato &lt;jdamato@fastly.com&gt;Reviewed-by: Donald Hunter &lt;donald.hunter@gmail.com&gt;Link: https://patch.msgid.link/20241010211857.2193076-1-kuba@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Thu, 10 Oct 2024 21:18:57 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b3ea4164 - testing: net-drv: add basic shaper test</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#b3ea4164</link>
        <description>testing: net-drv: add basic shaper testLeverage a basic/dummy netdevsim implementation to do functionalcoverage for NL interface.Reviewed-by: Jiri Pirko &lt;jiri@nvidia.com&gt;Signed-off-by: Paolo Abeni &lt;pabeni@redhat.com&gt;Link: https://patch.msgid.link/43092afbf38365c796088bf8fc155e523ab434ae.1728460186.git.pabeni@redhat.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Wed, 09 Oct 2024 08:09:57 +0000</pubDate>
        <dc:creator>Paolo Abeni &lt;pabeni@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>b494b167 - net: netconsole: selftests: Create a new netconsole selftest</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#b494b167</link>
        <description>net: netconsole: selftests: Create a new netconsole selftestAdds a selftest that creates two virtual interfaces, assigns one to anew namespace, and assigns IP addresses to both.It listens on the destination interface using socat and configures adynamic target on netconsole, pointing to the destination IP address.The test then checks if the message was received properly on thedestination interface.Signed-off-by: Breno Leitao &lt;leitao@debian.org&gt;Acked-by: Matthieu Baerts (NGI0) &lt;matttbe@kernel.org&gt;Link: https://patch.msgid.link/20240822095652.3806208-1-leitao@debian.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Thu, 22 Aug 2024 09:56:39 +0000</pubDate>
        <dc:creator>Breno Leitao &lt;leitao@debian.org&gt;</dc:creator>
    </item>
<item>
        <title>1cf27042 - net: selftest: add test for netdev netlink queue-get API</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#1cf27042</link>
        <description>net: selftest: add test for netdev netlink queue-get APIAdd a selftest for netdev generic netlink. For now there is only asingle test that exercises the `queue-get` API.The test works with netdevsim by default or with a real device bysetting NETIF.Add a timeout param to cmd() since ethtool -L can take a long time onreal devices.Signed-off-by: David Wei &lt;dw@davidwei.uk&gt;Link: https://lore.kernel.org/r/20240507163228.2066817-3-dw@davidwei.ukSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Tue, 07 May 2024 16:32:28 +0000</pubDate>
        <dc:creator>David Wei &lt;dw@davidwei.uk&gt;</dc:creator>
    </item>
<item>
        <title>a48a87c0 - selftests: drv-net: add a trivial ping test</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#a48a87c0</link>
        <description>selftests: drv-net: add a trivial ping testAdd a very simple test for testing with a remote system.Both IPv4 and IPv6 connectivity is optional, later changewill add checks to skip tests based on available addresses.Using netdevsim: $ ./run_kselftest.sh -t drivers/net:ping.py TAP version 13 1..1 # timeout set to 45 # selftests: drivers/net: ping.py # KTAP version 1 # 1..2 # ok 1 ping.test_v4 # ok 2 ping.test_v6 # # Totals: pass:2 fail:0 xfail:0 xpass:0 skip:0 error:0 ok 1 selftests: drivers/net: ping.pyCommand line SSH: $ NETIF=virbr0 REMOTE_TYPE=ssh REMOTE_ARGS=root@192.168.122.123 \    LOCAL_V4=192.168.122.1 REMOTE_V4=192.168.122.123 \    ./tools/testing/selftests/drivers/net/ping.py KTAP version 1 1..2 ok 1 ping.test_v4 ok 2 ping.test_v6 # SKIP Test requires IPv6 connectivity # Totals: pass:1 fail:0 xfail:1 xpass:0 skip:0 error:0Existing devices placed in netns (and using net.config): $ cat drivers/net/net.config NETIF=veth0 REMOTE_TYPE=netns REMOTE_ARGS=red LOCAL_V4=&quot;192.168.1.1&quot; REMOTE_V4=&quot;192.168.1.2&quot; $ ./run_kselftest.sh -t drivers/net:ping.py TAP version 13 1..1 # timeout set to 45 # selftests: drivers/net: ping.py # KTAP version 1 # 1..2 # ok 1 ping.test_v4 # ok 2 ping.test_v6 # SKIP Test requires IPv6 connectivity # # Totals: pass:1 fail:0 xfail:1 xpass:0 skip:0 error:0Reviewed-by: Willem de Bruijn &lt;willemb@google.com&gt;Link: https://lore.kernel.org/r/20240420025237.3309296-5-kuba@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Sat, 20 Apr 2024 02:52:34 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4db9f84 - selftests: drivers: add scaffolding for Netlink tests in Python</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/drivers/net/Makefile#b4db9f84</link>
        <description>selftests: drivers: add scaffolding for Netlink tests in PythonAdd drivers/net as a target for mixed-use tests.The setup is expected to work similarly to the forwarding tests.Since we only need one interface (unlike forwarding tests)read the target device name from NETIF. If not present we&apos;lltry to run the test against netdevsim.Reviewed-by: Petr Machata &lt;petrm@nvidia.com&gt;Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/drivers/net/Makefile</description>
        <pubDate>Fri, 05 Apr 2024 02:45:25 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
