<?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>fa1b961259bc5ba90b2ed693d8eb54c7641b6ec7 - krpc: add kernel side client over netlink(4)</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#fa1b961259bc5ba90b2ed693d8eb54c7641b6ec7</link>
        <description>krpc: add kernel side client over netlink(4)This shall be the official transport to connect kernel side RPC clientsto userland side RPC servers.  All current kernel side clients thathijack unix(4) sockets will be converted to it.  Some implementationdetails are available inside new clnt_nl.c.The complementary RPC server over netlink(4) coming in next commit.Reviewed by:		rmacklemDifferential Revision:	https://reviews.freebsd.org/D48549

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Sat, 01 Feb 2025 02:01:57 +0100</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>031beb4e239bfce798af17f5fe8dba8bcaf13d99 - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#031beb4e239bfce798af17f5fe8dba8bcaf13d99</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:54:58 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5bb3134a8c21cb87b30e135ef168483f0333dabb - Fix some modules to export more used symbols</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#5bb3134a8c21cb87b30e135ef168483f0333dabb</link>
        <description>Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by:	emasteSponsored by:	The FreeBSD FoundationMFC after:	1 weekDifferential revision:	https://reviews.freebsd.org/D32878

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Sun, 07 Nov 2021 09:42:24 +0100</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e25152834cdf3b353892835a4f3b157e066a8ed4 - MFH</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#e25152834cdf3b353892835a4f3b157e066a8ed4</link>
        <description>MFHSponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Thu, 27 Aug 2020 22:25:33 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ab0c29af0512df1e40c30f1b361da7803594336e - Add TLS support to the kernel RPC.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#ab0c29af0512df1e40c30f1b361da7803594336e</link>
        <description>Add TLS support to the kernel RPC.An internet draft titled &quot;Towards Remote Procedure Call Encryption By Default&quot;describes how TLS is to be used for Sun RPC, with NFS as an intended use case.This patch adds client and server support for this to the kernel RPC,using KERN_TLS and upcalls to daemons for the handshake, peer reset andother non-application data record cases.The upcalls to the daemons use three fields to uniquely identify theTCP connection. They are the time.tv_sec, time.tv_usec of the connectionestablshment, plus a 64bit sequence number. The time fields avoid problemswith re-use of the sequence number after a daemon restart.For the server side, once a Null RPC with AUTH_TLS is received, kernelreception on the socket is blocked and an upcall to the rpctlssd(8) daemonis done to perform the TLS handshake.  Upon completion, the completionstatus of the handshake is stored in xp_tls as flag bits and the reply tothe Null RPC is sent.For the client, if CLSET_TLS has been set, a new TCP connection willsend the Null RPC with AUTH_TLS to initiate the handshake.  The clientkernel RPC code will then block kernel I/O on the socket and do an upcallto the rpctlscd(8) daemon to perform the handshake.If the upcall is successful, ct_rcvstate will be maintained to indicateif/when an upcall is being done.If non-application data records are received, the code does an upcall tothe appropriate daemon, which will do a SSL_read() of 0 length to handlethe record(s).When the socket is being shut down, upcalls are done to the daemons, sothat they can perform SSL_shutdown() calls to perform the &quot;peer reset&quot;.The rpctlssd(8) and rpctlscd(8) daemons require a patched version of theopenssl library and, as such, will not be committed to head at this time.Although the changes done by this patch are fairly numerous, there shouldbe no semantics change to the kernel RPC at this time.A future commit to the NFS code will optionally enable use of TLS for NFS.

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Sat, 22 Aug 2020 05:57:55 +0200</pubDate>
        <dc:creator>Rick Macklem &lt;rmacklem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>732a02b4e77866604a120a275c082bb6221bd2ff - Split XDR into separate kernel module.  Make krpc depend on xdr.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#732a02b4e77866604a120a275c082bb6221bd2ff</link>
        <description>Split XDR into separate kernel module.  Make krpc depend on xdr.Reviewed by:	rmacklemDifferential Revision:	https://reviews.freebsd.org/D24408

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Fri, 17 Apr 2020 08:04:20 +0200</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e768ba63fcfb187cfd17f461f7d41345048 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#193d9e768ba63fcfb187cfd17f461f7d41345048</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/sys/modules/krpc/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:10:17 +0100</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9268022b74279434ed6300244e3f977e56a8ceb5 - Merge from head@274682</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#9268022b74279434ed6300244e3f977e56a8ceb5</link>
        <description>Merge from head@274682

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Wed, 19 Nov 2014 02:07:58 +0100</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>246e7a2b6494cd991b08ac669ed761ecea0cc98c - IFC @r269962</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#246e7a2b6494cd991b08ac669ed761ecea0cc98c</link>
        <description>IFC @r269962Submitted by:	Anish Gupta (akgupt3@gmail.com)

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Tue, 02 Sep 2014 06:22:42 +0200</pubDate>
        <dc:creator>Neel Natu &lt;neel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ee7b0571c2c18bdec848ed2044223cc88db29bd8 - Merge head from 7/28</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#ee7b0571c2c18bdec848ed2044223cc88db29bd8</link>
        <description>Merge head from 7/28

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Tue, 19 Aug 2014 08:50:54 +0200</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1b833d535b9ce1789dca84d8bd15d22e1ed58d46 - Sync to HEAD@r269943.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#1b833d535b9ce1789dca84d8bd15d22e1ed58d46</link>
        <description>Sync to HEAD@r269943.

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Wed, 13 Aug 2014 18:20:41 +0200</pubDate>
        <dc:creator>Alexander V. Chernikov &lt;melifaro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aeaed508982227551b2748339033bb2483382b4d - Move most of the 15 variations on generating opt_inet.h and</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#aeaed508982227551b2748339033bb2483382b4d</link>
        <description>Move most of the 15 variations on generating opt_inet.h andopt_inet6.h into kmod.mk by forcing almost everybody to eat the samedogfood. While at it, consolidate the opt_bpf.h and opt_mroute.htargets here too.

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Tue, 05 Aug 2014 00:37:02 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c59e4cc34daadb47669f445532acabaa83ba7f8a - Merge the NFSv4.1 server code in projects/nfsv4.1-server over</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#c59e4cc34daadb47669f445532acabaa83ba7f8a</link>
        <description>Merge the NFSv4.1 server code in projects/nfsv4.1-server overinto head. The code is not believed to have any effecton the semantics of non-NFSv4.1 server behaviour.It is a rather large merge, but I am hoping that there willnot be any regressions for the NFS server.MFC after:	1 month

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Tue, 01 Jul 2014 22:47:16 +0200</pubDate>
        <dc:creator>Rick Macklem &lt;rmacklem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6f3544cd7084abbadd83637993a4f41fd30e6ccd - Merge svn+ssh://svn.freebsd.org/base/head@214309</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#6f3544cd7084abbadd83637993a4f41fd30e6ccd</link>
        <description>Merge svn+ssh://svn.freebsd.org/base/head@214309

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Tue, 26 Oct 2010 04:34:47 +0200</pubDate>
        <dc:creator>Marcel Moolenaar &lt;marcel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>109c1de8bad542e1ce21e866a36b2b86dbe8d49d - Make the RPC specific __rpc_inet_ntop() and __rpc_inet_pton() general</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#109c1de8bad542e1ce21e866a36b2b86dbe8d49d</link>
        <description>Make the RPC specific __rpc_inet_ntop() and __rpc_inet_pton() generalin the kernel (just as inet_ntoa() and inet_aton()) are and sync theirprototype accordingly with already mentioned functions.Sponsored by:	Sandvine IncorporatedReviewed by:	emaste, rstoneApproved by:	dfrMFC after:	2 weeks

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Fri, 24 Sep 2010 17:01:45 +0200</pubDate>
        <dc:creator>Attilio Rao &lt;attilio@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e57c2b130f2cd40967cf20698d376cc5ada95871 - integrate from head@185615</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#e57c2b130f2cd40967cf20698d376cc5ada95871</link>
        <description>integrate from head@185615

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Thu, 04 Dec 2008 19:48:08 +0100</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>19aa71e559572acef61056ee77a24a95bb1fee02 - Unbreak NFS.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#19aa71e559572acef61056ee77a24a95bb1fee02</link>
        <description>Unbreak NFS.Pointy hat to:	dfr

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Thu, 06 Nov 2008 11:53:35 +0100</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6b0d16d374627cfcb0c39328097ffa6b4fa3d0df - Add nfslockd and krpc modules.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#6b0d16d374627cfcb0c39328097ffa6b4fa3d0df</link>
        <description>Add nfslockd and krpc modules.

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Thu, 27 Mar 2008 12:55:03 +0100</pubDate>
        <dc:creator>Doug Rabson &lt;dfr@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>19aa71e559572acef61056ee77a24a95bb1fee02 - Unbreak NFS.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/krpc/Makefile#19aa71e559572acef61056ee77a24a95bb1fee02</link>
        <description>Unbreak NFS.Pointy hat to:	dfr

            List of files:
            /freebsd/sys/modules/krpc/Makefile</description>
        <pubDate>Thu, 06 Nov 2008 11:53:35 +0100</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
