<?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>0dc73141 - nfs_common: add nfs_localio trace events</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#0dc73141</link>
        <description>nfs_common: add nfs_localio trace eventsThe nfs_localio.ko now exposes /sys/kernel/tracing/events/nfs_localiowith nfs_localio_enable_client and nfs_localio_disable_client events.Signed-off-by: Mike Snitzer &lt;snitzer@kernel.org&gt;Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Sat, 16 Nov 2024 01:41:03 +0000</pubDate>
        <dc:creator>Mike Snitzer &lt;snitzer@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>2a33a85b - nfs_common: add NFS LOCALIO auxiliary protocol enablement</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#2a33a85b</link>
        <description>nfs_common: add NFS LOCALIO auxiliary protocol enablementfs/nfs_common/nfslocalio.c provides interfaces that enable an NFSclient to generate a nonce (single-use UUID) and associated nfs_uuid_tstruct, register it with nfs_common for subsequent lookup andverification by the NFS server and if matched the NFS server populatesmembers in the nfs_uuid_t struct.nfs_common&apos;s nfs_uuids list is the basis for localio enablement, assuch it has members that point to nfsd memory for direct use by theclient (e.g. &apos;net&apos; is the server&apos;s network namespace, through it theclient can access nn-&gt;nfsd_serv).This commit also provides the base nfs_uuid_t interfaces to allowproper net namespace refcounting for the LOCALIO use case.CONFIG_NFS_LOCALIO controls the nfs_common, NFS server and NFS clientenablement for LOCALIO. If both NFS_FS=m and NFSD=m thenNFS_COMMON_LOCALIO_SUPPORT=m and nfs_localio.ko is built (and providesnfs_common&apos;s LOCALIO support).  # lsmod | grep nfs_localio  nfs_localio            12288  2 nfsd,nfs  sunrpc                745472  35 nfs_localio,nfsd,auth_rpcgss,lockd,nfsv3,nfsSigned-off-by: Mike Snitzer &lt;snitzer@kernel.org&gt;Co-developed-by: NeilBrown &lt;neilb@suse.de&gt;Signed-off-by: NeilBrown &lt;neilb@suse.de&gt;Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Thu, 05 Sep 2024 19:09:48 +0000</pubDate>
        <dc:creator>Mike Snitzer &lt;snitzer@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4806ded4 - nfs_common: factor out nfs_errtbl and nfs_stat_to_errno</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#4806ded4</link>
        <description>nfs_common: factor out nfs_errtbl and nfs_stat_to_errnoCommon nfs_stat_to_errno() is used by both fs/nfs/nfs2xdr.c andfs/nfs/nfs3xdr.cWill also be used by fs/nfsd/localio.cSigned-off-by: Mike Snitzer &lt;snitzer@kernel.org&gt;Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;Reviewed-by: NeilBrown &lt;neilb@suse.de&gt;Signed-off-by: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Thu, 05 Sep 2024 19:09:35 +0000</pubDate>
        <dc:creator>Mike Snitzer &lt;snitzer@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>02591f9f - NFSv4_2: SSC helper should use its own config.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#02591f9f</link>
        <description>NFSv4_2: SSC helper should use its own config.Currently NFSv4_2 SSC helper, nfs_ssc, incorrectly uses GRACE_PERIODas its config. Fix by adding new config NFS_V4_2_SSC_HELPER whichdepends on NFS_V4_2 and is automatically selected when NFSD_V4 isenabled. Also removed the file name from a comment in nfs_ssc.c.Signed-off-by: Dai Ngo &lt;dai.ngo@oracle.com&gt;Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Thu, 28 Jan 2021 06:42:26 +0000</pubDate>
        <dc:creator>Dai Ngo &lt;dai.ngo@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>0cfcd405 - NFSv4.2: Fix NFS4ERR_STALE error when doing inter server copy</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#0cfcd405</link>
        <description>NFSv4.2: Fix NFS4ERR_STALE error when doing inter server copyNFS_FS=y as dependency of CONFIG_NFSD_V4_2_INTER_SSC still havebuild errors and some configs with NFSD=m to get NFS4ERR_STALEerror when doing inter server copy.Added ops table in nfs_common for knfsd to access NFS client modules.Fixes: 3ac3711adb88 (&quot;NFSD: Fix NFS server build errors&quot;)Signed-off-by: Dai Ngo &lt;dai.ngo@oracle.com&gt;Signed-off-by: J. Bruce Fields &lt;bfields@redhat.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Mon, 19 Oct 2020 03:42:49 +0000</pubDate>
        <dc:creator>Dai Ngo &lt;dai.ngo@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>f7790029 - lockd: move lockd&apos;s grace period handling into its own module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#f7790029</link>
        <description>lockd: move lockd&apos;s grace period handling into its own moduleCurrently, all of the grace period handling is part of lockd. Eventuallythough we&apos;d like to be able to build v4-only servers, at which pointwe&apos;ll need to put all of this elsewhere.Move the code itself into fs/nfs_common and have it build a grace.komodule. Then, rejigger the Kconfig options so that both nfsd and lockdenable it automatically.Signed-off-by: Jeff Layton &lt;jlayton@primarydata.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Fri, 12 Sep 2014 20:40:20 +0000</pubDate>
        <dc:creator>Jeff Layton &lt;jlayton@primarydata.com&gt;</dc:creator>
    </item>
<item>
        <title>a257cdd0 - [PATCH] NFSD: Add server support for NFSv3 ACLs.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs_common/Makefile#a257cdd0</link>
        <description>[PATCH] NFSD: Add server support for NFSv3 ACLs. This adds functions for encoding and decoding POSIX ACLs for the NFSACL protocol extension, and the GETACL and SETACL RPCs.  The implementation is compatible with NFSACL in Solaris. Signed-off-by: Andreas Gruenbacher &lt;agruen@suse.de&gt; Acked-by: Olaf Kirch &lt;okir@suse.de&gt; Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt; Signed-off-by: Trond Myklebust &lt;Trond.Myklebust@netapp.com&gt;

            List of files:
            /linux-6.15/fs/nfs_common/Makefile</description>
        <pubDate>Wed, 22 Jun 2005 17:16:26 +0000</pubDate>
        <dc:creator>Andreas Gruenbacher &lt;agruen@suse.de&gt;</dc:creator>
    </item>
</channel>
</rss>
