<?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>031beb4e - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#031beb4e</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:54:58 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>78373a5f - modules: adding some missing opt_* dependencies</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#78373a5f</link>
        <description>modules: adding some missing opt_* dependenciesif_vlan grew a dependency on opt_inet6.h in r356993if_lagg and if_vlan both grew a dependency on opt_kern_tls.h in r351522This is needed for standalone module builds of these guys.

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Wed, 29 Jan 2020 22:43:56 +0000</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e76 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#193d9e76</link>
        <description>sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with:	`cd sys/modules; make ALL_MODULES=` on amd64MFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 10:10:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f3e7afe2 - Implement kernel support for hardware rate limited sockets.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#f3e7afe2</link>
        <description>Implement kernel support for hardware rate limited sockets.- Add RATELIMIT kernel configuration keyword which must be set toenable the new functionality.- Add support for hardware driven, Receive Side Scaling, RSS aware, ratelimited sendqueues and expose the functionality through the alreadyestablished SO_MAX_PACING_RATE setsockopt(). The API support rates inthe range from 1 to 4Gbytes/s which are suitable for regular TCP andUDP streams. The setsockopt(2) manual page has been updated.- Add rate limit function callback API to &quot;struct ifnet&quot; which supportsthe following operations: if_snd_tag_alloc(), if_snd_tag_modify(),if_snd_tag_query() and if_snd_tag_free().- Add support to ifconfig to view, set and clear the IFCAP_TXRTLMTflag, which tells if a network driver supports rate limiting or not.- This patch also adds support for rate limiting through VLAN and LAGGintermediate network devices.- How rate limiting works:1) The userspace application calls setsockopt() after accepting ormaking a new connection to set the rate which is then stored in thesocket structure in the kernel. Later on when packets are transmitteda check is made in the transmit path for rate changes. A rate changeimplies a non-blocking ifp-&gt;if_snd_tag_alloc() call will be made to thedestination network interface, which then sets up a custom sendqueuewith the given rate limitation parameter. A &quot;struct m_snd_tag&quot; pointer isreturned which serves as a &quot;snd_tag&quot; hint in the m_pkthdr for thesubsequently transmitted mbufs.2) When the network driver sees the &quot;m-&gt;m_pkthdr.snd_tag&quot; differentfrom NULL, it will move the packets into a designated rate limited sendqueuegiven by the snd_tag pointer. It is up to the individual drivers how the ratelimited traffic will be rate limited.3) Route changes are detected by the NIC drivers in the ifp-&gt;if_transmit()routine when the ifnet pointer in the incoming snd_tag mismatches theone of the network interface. The network adapter frees the mbuf andreturns EAGAIN which causes the ip_output() to release and clear the sendtag. Upon next ip_output() a new &quot;snd_tag&quot; will be tried allocated.4) When the PCB is detached the custom sendqueue will be released by anon-blocking ifp-&gt;if_snd_tag_free() call to the currently bound networkinterface.Reviewed by:		wblock (manpages), adrian, gallatin, scottl (network)Differential Revision:	https://reviews.freebsd.org/D3687Sponsored by:		Mellanox TechnologiesMFC after:		3 months

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Wed, 18 Jan 2017 13:31:17 +0000</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8d8bc018 - After r193232 rt_tables in vnet.h are no longer indirectly dependent on</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#8d8bc018</link>
        <description>After r193232 rt_tables in vnet.h are no longer indirectly dependent onthe ROUTETABLES kernel option thus there is no need to include opt_route.hanymore in all consumers of vnet.h and no longer depend on it for modulebuilds.Remove the hidden include in flowtable.h as well and leave the twoexplicit #includes in ip_input.c and ip_output.c.

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Mon, 08 Jun 2009 19:57:35 +0000</pubDate>
        <dc:creator>Bjoern A. Zeeb &lt;bz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4b79449e - Rather than using hidden includes (with cicular dependencies),</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#4b79449e</link>
        <description>Rather than using hidden includes (with cicular dependencies),directly include only the header files needed. This reduces theunneeded spamming of various headers into lots of files.For now, this leaves us with very few modules including vnet.hand thus needing to depend on opt_route.h.Reviewed by:	brooks, gnn, des, zec, impSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Tue, 02 Dec 2008 21:37:28 +0000</pubDate>
        <dc:creator>Bjoern A. Zeeb &lt;bz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8071ab55 - if_vlan no more depends on INET.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#8071ab55</link>
        <description>if_vlan no more depends on INET.

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Mon, 19 Mar 2007 17:34:31 +0000</pubDate>
        <dc:creator>Yaroslav Tykhiy &lt;ytykhiy@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>525312f7 - Fix standalone module build.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#525312f7</link>
        <description>Fix standalone module build.Reported by:	Boris Samorodov

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Fri, 17 Feb 2006 10:52:59 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>82292344 - Let modules use the kernel&apos;s opt_*.h files if built along with</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#82292344</link>
        <description>Let modules use the kernel&apos;s opt_*.h files if built along withthe kernel by wrapping all targets for fake opt_*.h files in.if defined(KERNBUILDDIR).  Thus, such fake files won&apos;t becreated at all if modules are built with the kernel.Some modules undergo cleanup like removing unused or unneededoptions or .h files, without which they wouldn&apos;t build this wayor the other.Reviewed by:	ruTested by:	no binary changes in modules built aloneTested on:	i386 sparc64 amd64

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Fri, 14 Oct 2005 23:30:17 +0000</pubDate>
        <dc:creator>Yaroslav Tykhiy &lt;ytykhiy@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>17d6c636 - Drop &lt;bsd.man.mk&gt; support from &lt;bsd.kmod.mk&gt;.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#17d6c636</link>
        <description>Drop &lt;bsd.man.mk&gt; support from &lt;bsd.kmod.mk&gt;.Not objected to by:	-current

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Fri, 11 Jan 2002 15:49:02 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9d4fe4b2 - Make vlan(4) loadable, unloadable, and clonable.  As a side effect,</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/if_vlan/Makefile#9d4fe4b2</link>
        <description>Make vlan(4) loadable, unloadable, and clonable.  As a side effect,interfaces must now always enable VLAN support.Reviewed by:	jlemonMFC after:	3 weeks

            List of files:
            /freebsd-14.2/sys/modules/if_vlan/Makefile</description>
        <pubDate>Wed, 05 Sep 2001 21:10:28 +0000</pubDate>
        <dc:creator>Brooks Davis &lt;brooks@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
