<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>6ab30433a73b5e52a0562010b75257bcfc57bcbd - tests/net: Run all tests with execenv=jail and enable parallelism</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#6ab30433a73b5e52a0562010b75257bcfc57bcbd</link>
        <description>tests/net: Run all tests with execenv=jail and enable parallelismThis has been stable in my testing, and enabling parallelism speeds uptest runs considerably.  In particular, with -v parallelism=16 in a16-vcpu bhyve VM my test runs go from ~50m to ~40m; the exact numbersdepend on the kernel config in use.Reviewed by:	pouriaMFC after:	2 weeksDifferential Revision:	https://reviews.freebsd.org/D57094

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Fri, 22 May 2026 16:44:08 +0200</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa9f669d09a7a193d470477398815f45a42c0270 - geneve: Add tests for geneve</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#aa9f669d09a7a193d470477398815f45a42c0270</link>
        <description>geneve: Add tests for geneveAdd tests for each combinations of geneve modes, address familiesand multicast.Differential Revision: https://reviews.freebsd.org/D55183

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Sat, 11 Apr 2026 20:45:08 +0200</pubDate>
        <dc:creator>Pouria Mousavizadeh Tehrani &lt;pouria@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a1174b3b1174754b1f69406bff4456d002e8f583 - tun(4)/tap(4): allow devices to be configured as transient</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#a1174b3b1174754b1f69406bff4456d002e8f583</link>
        <description>tun(4)/tap(4): allow devices to be configured as transientTransient tunnel devices are removed immediately after last close, sothat an application that&apos;s created the tunnel could eliminate the needto manually destroy the tunnel whose lifetime it&apos;s already managing.Reviewed by:	zleiDifferential Revision:	https://reviews.freebsd.org/D44200

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Thu, 21 Aug 2025 16:21:42 +0200</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bc9867173f6af243929129b7050af6c64966c7d6 - tests/sys/net: if_bridge_test does not require python</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#bc9867173f6af243929129b7050af6c64966c7d6</link>
        <description>tests/sys/net: if_bridge_test does not require pythonThis was originally added for if_bridge_test:span which uses scapy, butthat requirement is now annotated in the test itself.Remove the requirement so the remaining bridge tests can run withoutPython installed.

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Sun, 10 Aug 2025 17:27:08 +0200</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>da9f1571dcd28201a235fa230329ae3b1aa8e020 - tests/sys/net: run if_bridge_test in a jail</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#da9f1571dcd28201a235fa230329ae3b1aa8e020</link>
        <description>tests/sys/net: run if_bridge_test in a jailMany of the tests in if_bridge_test create new epair interfaces andthen add them to a bridge.If devd is running, devd will attempt to configure these interfacesbased on the host&apos;s /etc/rc.conf, and may enable IPv6 on the newinterface (for example, if ipv6_activate_all_interfaces is enabled),causing an IPv6 link-local address to be assigned to the epair.  Thiscauses the test to fail if net.link.bridge.member_ifaddrs is set to 0,which is the default.Fix this by running the tests in a jail, so there is no devd tointerfere with our new interfaces.Reviewed by:	kevans, kp, desApproved by:	des (mentor), kevans (mentor)Differential Revision:	https://reviews.freebsd.org/D50476

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Wed, 04 Jun 2025 07:37:18 +0200</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dd49816b0d66697ec80dac256c2973d881c39784 - bpf: avoid panic on multiple readers</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#dd49816b0d66697ec80dac256c2973d881c39784</link>
        <description>bpf: avoid panic on multiple readersIf we have multiple simultaneous readers on a single /dev/bpf fd it&apos;s possiblefor the assertion after the bpf_uiomove() in bpfread() to fail.Note that the bpf_uiomove() is done outside of the BPFD_LOCK, because uiomovemay sleep. As a result it&apos;s possible for another thread to have alreadyreclaimed toe bd_hbuf, thus causing us to fail the assertion.Even without INVARIANTS this may provoke panics.That results (with INVARIANTS) in a panic such as:	login: panic: bpfread: lost bd_hbuf	cpuid = 13	time = 1740567635	KDB: stack backtrace:	db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe003972db10	vpanic() at vpanic+0x136/frame 0xfffffe003972dc40	panic() at panic+0x43/frame 0xfffffe003972dca0	bpfread() at bpfread+0x2e8/frame 0xfffffe003972dce0	devfs_read_f() at devfs_read_f+0xe4/frame 0xfffffe003972dd40	dofileread() at dofileread+0x80/frame 0xfffffe003972dd90	sys_read() at sys_read+0xb7/frame 0xfffffe003972de00	amd64_syscall() at amd64_syscall+0x15a/frame 0xfffffe003972df30	fast_syscall_common() at fast_syscall_common+0xf8/frame 0xfffffe003972df30	--- syscall (3, FreeBSD ELF64, read), rip = 0x302787166afa, rsp = 0x302782638a78, rbp = 0x302782638aa0 ---Also add a test case replicating the known trigger for this panic.Sponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D49135

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Wed, 26 Feb 2025 13:50:08 +0100</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c0f13232410cf881475d6e4dbd0ec28ab3476c59 - wg tests: Add a simple regression test case for netmap support</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#c0f13232410cf881475d6e4dbd0ec28ab3476c59</link>
        <description>wg tests: Add a simple regression test case for netmap supportMFC after:	1 monthSponsored by:	Klara, Inc.Sponsored by:	Zenarmor

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Sat, 20 Apr 2024 18:01:53 +0200</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:55:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d116b8430b90212e308fe9945038c7bd98edf1bc - epair tests: test PCP tagged packets</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#d116b8430b90212e308fe9945038c7bd98edf1bc</link>
        <description>epair tests: test PCP tagged packetsPR:		270736MFC after:	1 weekSponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D39483

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Mon, 10 Apr 2023 12:55:10 +0200</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8fb9739615da8922fbd8988ccd77093d4ca335ba - wg: Re-add basic if_wg(4) tests.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#8fb9739615da8922fbd8988ccd77093d4ca335ba</link>
        <description>wg: Re-add basic if_wg(4) tests.These were originally added in commit74ae3f3e33b810248da19004c58b3581cd367843 but have been updated to usewg(8).Reviewed by:	kevans, markjSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D37400

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Fri, 16 Dec 2022 21:01:26 +0100</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>067acae2f3a459537001b21c28ce7311da85a1e3 - if_ovpn tests: basic test case</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#067acae2f3a459537001b21c28ce7311da85a1e3</link>
        <description>if_ovpn tests: basic test caseSet up an OpenVPN tunnel between two jails, send traffic through them toconfirm basic function.Sponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D35067

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Mon, 25 Apr 2022 17:58:31 +0200</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>eb5e0755f7496d1328d572b4d181c70b39152f08 - net tests: basic if_stf test</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#eb5e0755f7496d1328d572b4d181c70b39152f08</link>
        <description>net tests: basic if_stf testTest the 6to4 code.MFC after:	3 weeksSponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D32850

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Fri, 05 Nov 2021 15:20:19 +0100</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6e0755b37b20f776c7a9ac7a720db1af13966717 - net tests: basic if_gif(4) test case</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#6e0755b37b20f776c7a9ac7a720db1af13966717</link>
        <description>net tests: basic if_gif(4) test caseMFC after:	3 weeksSponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D32836

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Thu, 04 Nov 2021 17:15:19 +0100</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3e87f800f01b6d2cbe49924a01038379889d8b3b - net tests: basic test case for bpf(4)&apos;s ability to set vlan pcp</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#3e87f800f01b6d2cbe49924a01038379889d8b3b</link>
        <description>net tests: basic test case for bpf(4)&apos;s ability to set vlan pcpUse dhclient with its &apos;vlan-pcp&apos; option to set a VLAN PCP value andverify that it actually gets set.MFC after:	1 weekSponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D31276

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Thu, 22 Jul 2021 14:50:27 +0200</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4ae3a97e127cea14277b904af31483af7e6e2891 - bridge tests: Test STP config BPDU validation</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#4ae3a97e127cea14277b904af31483af7e6e2891</link>
        <description>bridge tests: Test STP config BPDU validationPR:		254924Reviewed by:	donnerDifferential Revision:	https://reviews.freebsd.org/D29783

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Thu, 15 Apr 2021 14:55:00 +0200</pubDate>
        <dc:creator>Kristof Provost &lt;kp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7cc42f6d25ef2e19059d088fa7d4853fe9afefb5 - Do a sweep and remove most WARNS=6 settings</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#7cc42f6d25ef2e19059d088fa7d4853fe9afefb5</link>
        <description>Do a sweep and remove most WARNS=6 settingsRepeating the default WARNS here makes it slightly more difficult toexperiment with default WARNS changes, e.g. if we did something absolutelybananas and introduced a WARNS=7 and wanted to try lifting the default tothat.Drop most of them; there is one in the blake2 kernel module, but I suspectit should be dropped -- the default WARNS in the rest of the build doesn&apos;tcurrently apply to kernel modules, and I haven&apos;t put too much thought intowhether it makes sense to make it so.

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Thu, 01 Oct 2020 03:10:51 +0200</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f464bd04cefb8dd6890a5b6db64ca786022d5406 - Make sys.net.if_bridge_test depend on python; sys.net.if_bridge_test.span</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#f464bd04cefb8dd6890a5b6db64ca786022d5406</link>
        <description>Make sys.net.if_bridge_test depend on python; sys.net.if_bridge_test.spanrequires it.MFC after:	2 weeksSponsored by:	DARPA

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Tue, 19 May 2020 23:55:29 +0200</pubDate>
        <dc:creator>Edward Tomasz Napierala &lt;trasz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e43d33d286a1aa41b6fc6a209f28a18e8cd7437a - Merge ^/head r358466 through r358677.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#e43d33d286a1aa41b6fc6a209f28a18e8cd7437a</link>
        <description>Merge ^/head r358466 through r358677.

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Thu, 05 Mar 2020 18:55:36 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8ccf50324056f9a5cb1f0da6886380775ae4f51a - Skip if_epair regression test if module doesn&apos;t exist</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#8ccf50324056f9a5cb1f0da6886380775ae4f51a</link>
        <description>Skip if_epair regression test if module doesn&apos;t existApproved by:	kpSponsored by:	NetflixDifferential Revision:	https://reviews.freebsd.org/D23876

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Tue, 03 Mar 2020 18:35:15 +0100</pubDate>
        <dc:creator>Olivier Cochard &lt;olivier@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b33a8b38225a600626f8fc4b3718f4bd79e773dc - Merge ^/head r357966 through r357999.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/net/Makefile#b33a8b38225a600626f8fc4b3718f4bd79e773dc</link>
        <description>Merge ^/head r357966 through r357999.

            List of files:
            /freebsd/tests/sys/net/Makefile</description>
        <pubDate>Sun, 16 Feb 2020 14:23:54 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
