<?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 Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>cd35b6cb - nfs: add missing selections of CONFIG_CRC32</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#cd35b6cb</link>
        <description>nfs: add missing selections of CONFIG_CRC32nfs.ko, nfsd.ko, and lockd.ko all use crc32_le(), which is availableonly when CONFIG_CRC32 is enabled.  But the only NFS kconfig option thatselected CONFIG_CRC32 was CONFIG_NFS_DEBUG, which is client-specific anddid not actually guard the use of crc32_le() even on the client.The code worked around this bug by only actually calling crc32_le() whenCONFIG_CRC32 is built-in, instead hard-coding &apos;0&apos; in other cases.  Thisavoided randconfig build errors, and in real kernels the fallback codewas unlikely to be reached since CONFIG_CRC32 is &apos;default y&apos;.  But, thisreally needs to just be done properly, especially now that I&apos;m planningto update CONFIG_CRC32 to not be &apos;default y&apos;.Therefore, make CONFIG_NFS_FS, CONFIG_NFSD, and CONFIG_LOCKD selectCONFIG_CRC32.  Then remove the fallback code that becomes unnecessary,as well as the selection of CONFIG_CRC32 from CONFIG_NFS_DEBUG.Fixes: 1264a2f053a3 (&quot;NFS: refactor code for calculating the crc32 hash of a filehandle&quot;)Signed-off-by: Eric Biggers &lt;ebiggers@google.com&gt;Acked-by: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Tue, 01 Apr 2025 22:02:21 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>90190ba1 - nfs: Make NFS_FSCACHE select NETFS_SUPPORT instead of depending on it</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#90190ba1</link>
        <description>nfs: Make NFS_FSCACHE select NETFS_SUPPORT instead of depending on itHaving the NFS_FSCACHE option depend on the NETFS_SUPPORT options makesselecting NFS_FSCACHE impossible unless another option that additionallyselects NETFS_SUPPORT is already selected.As a result, for example, being able to reach and select the NFS_FSCACHEoption requires the CEPH_FS or CIFS option to be selected beforehand, whichobviously doesn&apos;t make much sense.Let&apos;s correct this by making the NFS_FSCACHE option actually select theNETFS_SUPPORT option, instead of depending on it.Fixes: 915cd30cdea8 (&quot;netfs, fscache: Combine fscache with netfs&quot;)Cc: stable@vger.kernel.orgReported-by: Diederik de Haas &lt;didi.debian@cknow.org&gt;Signed-off-by: Dragan Simic &lt;dsimic@manjaro.org&gt;Signed-off-by: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Fri, 27 Dec 2024 19:17:58 +0000</pubDate>
        <dc:creator>Dragan Simic &lt;dsimic@manjaro.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/Kconfig#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/Kconfig</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>d1404e46 - NFS: Don&apos;t enable NFS v2 by default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#d1404e46</link>
        <description>NFS: Don&apos;t enable NFS v2 by defaultThis came up during one of the Bake-a-thon discussions. NFS v2 supportwas dropped from nfs-utils/mount.nfs in December 2021. Let&apos;s turn itoff by default in the kernel too, since this means there isn&apos;t a wayto mount and test it.Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;Reviewed-by: Jeffrey Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Thu, 25 Apr 2024 20:34:40 +0000</pubDate>
        <dc:creator>Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;</dc:creator>
    </item>
<item>
        <title>915cd30c - netfs, fscache: Combine fscache with netfs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#915cd30c</link>
        <description>netfs, fscache: Combine fscache with netfsNow that the fscache code is moved to be colocated with the netfslib codeso that they combined into one module, do the combining.Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;cc: Christian Brauner &lt;christian@brauner.io&gt;cc: linux-fsdevel@vger.kernel.orgcc: linux-cachefs@redhat.comcc: linux-nfs@vger.kernel.org,cc: linux-erofs@lists.ozlabs.org

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Mon, 20 Nov 2023 15:55:18 +0000</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>a68c6fbb - nfs41: drop dependency between flexfiles layout driver and NFSv3 modules</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#a68c6fbb</link>
        <description>nfs41: drop dependency between flexfiles layout driver and NFSv3 modulesThe flexfiles layout driver depends on NFSv3 module as data serversmight be configure to provide nfsv3 only.Disabling the nfsv3 protocol completely disables the flexfiles layout driver,however, the data server still might support v4.1 protocol. Thus the strondcouling betwwen flexfiles and nfsv3 modules should be relaxed, as layout driverwill return UNSUPPORTED if not matching protocol is found.Signed-off-by: Tigran Mkrtchyan &lt;tigran.mkrtchyan@desy.de&gt;Signed-off-by: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Mon, 11 Sep 2023 14:59:04 +0000</pubDate>
        <dc:creator>Mkrtchyan, Tigran &lt;tigran.mkrtchyan@desy.de&gt;</dc:creator>
    </item>
<item>
        <title>9cf2744d - NFS: Enable the READ_PLUS operation by default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#9cf2744d</link>
        <description>NFS: Enable the READ_PLUS operation by defaultNow that the remaining issues have been worked out, including someunexpected 32 bit issues, we can safely enable the feature by default.Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Mon, 17 Jul 2023 20:33:14 +0000</pubDate>
        <dc:creator>Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;</dc:creator>
    </item>
<item>
        <title>88a4d7bd - NFS: Configure support for netfs when NFS fscache is configured</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#88a4d7bd</link>
        <description>NFS: Configure support for netfs when NFS fscache is configuredAs first steps for support of the netfs library when NFS_FSCACHE isconfigured, add NETFS_SUPPORT to Kconfig and add the required netfs_inodeinto struct nfs_inode.Using netfs requires we move the VFS inode structure to be storedinside struct netfs_inode, along with the fscache_cookie.Thus, if NFS_FSCACHE is configured, place netfs_inode inside ananonymous union so the vfs_inode memory is the same and we donot need to modify other non-fscache areas of NFS.In addition, inside the NFS fscache code, use the new helpers,netfs_inode() and netfs_i_cookie() helpers, and remove our ownhelper, nfs_i_fscache().Later patches will convert NFS fscache to fully use netfs.Signed-off-by: Dave Wysochanski &lt;dwysocha@redhat.com&gt;Tested-by: Daire Byrne &lt;daire@dneg.com&gt;Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Mon, 20 Feb 2023 13:43:05 +0000</pubDate>
        <dc:creator>Dave Wysochanski &lt;dwysocha@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>8be8f170 - NFS: Remove &quot;select RPCSEC_GSS_KRB5</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#8be8f170</link>
        <description>NFS: Remove &quot;select RPCSEC_GSS_KRB5If CONFIG_CRYPTO=n (e.g. arm/shmobile_defconfig):   WARNING: unmet direct dependencies detected for RPCSEC_GSS_KRB5     Depends on [n]: NETWORK_FILESYSTEMS [=y] &amp;&amp; SUNRPC [=y] &amp;&amp; CRYPTO [=n]     Selected by [y]:     - NFS_V4 [=y] &amp;&amp; NETWORK_FILESYSTEMS [=y] &amp;&amp; NFS_FS [=y]As NFSv4 can work without crypto enabled, remove the RPCSEC_GSS_KRB5dependency altogether.Trond says:&gt; It is possible to use the NFSv4.1 client with just AUTH_SYS, and&gt; in fact there are plenty of people out there using only that. The&gt; fact that RFC5661 gets its knickers in a twist about RPCSEC_GSS&gt; support is largely irrelevant to those people.&gt;&gt; The other issue is that &#8217;select&#8217; enforces the strict dependency&gt; that if the NFS client is compiled into the kernel, then the&gt; RPCSEC_GSS and kerberos code needs to be compiled in as well: they&gt; cannot exist as modules.Fixes: e57d06527738 (&quot;NFS &amp; NFSD: Update GSS dependencies&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Reported-by: Niklas S&#246;derlund &lt;niklas.soderlund@ragnatech.se&gt;Suggested-by: Trond Myklebust &lt;trondmy@hammerspace.com&gt;Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Tue, 28 Mar 2023 17:47:58 +0000</pubDate>
        <dc:creator>Chuck Lever &lt;chuck.lever@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>e57d0652 - NFS &amp; NFSD: Update GSS dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#e57d0652</link>
        <description>NFS &amp; NFSD: Update GSS dependenciesGeert reports that:&gt; On v6.2, &quot;make ARCH=m68k defconfig&quot; gives you&gt; CONFIG_RPCSEC_GSS_KRB5=m&gt; On v6.3, it became builtin, due to dropping the dependencies on&gt; the individual crypto modules.&gt;&gt; $ grep -E &quot;CRYPTO_(MD5|DES|CBC|CTS|ECB|HMAC|SHA1|AES)&quot; .config&gt; CONFIG_CRYPTO_AES=y&gt; CONFIG_CRYPTO_AES_TI=m&gt; CONFIG_CRYPTO_DES=m&gt; CONFIG_CRYPTO_CBC=m&gt; CONFIG_CRYPTO_CTS=m&gt; CONFIG_CRYPTO_ECB=m&gt; CONFIG_CRYPTO_HMAC=m&gt; CONFIG_CRYPTO_MD5=m&gt; CONFIG_CRYPTO_SHA1=mThis behavior is triggered by the &quot;default y&quot; in the definition ofRPCSEC_GSS.The &quot;default y&quot; was added in 2010 by commit df486a25900f (&quot;NFS: Fixthe selection of security flavours in Kconfig&quot;). However,svc_gss_principal was removed in 2012 by commit 03a4e1f6ddf2(&quot;nfsd4: move principal name into svc_cred&quot;), so the 2010 fix isno longer necessary. We can safely change the NFS_V4 and NFSD_V4dependencies back to RPCSEC_GSS_KRB5 to get the nicer v6.2behavior back.Selecting KRB5 symbolically represents the true requirement here:that all spec-compliant NFSv4 implementations must have Kerberosavailable to use.Reported-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Fixes: dfe9a123451a (&quot;SUNRPC: Enable rpcsec_gss_krb5.ko to be built without CRYPTO_DES&quot;)Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Wed, 08 Mar 2023 14:45:09 +0000</pubDate>
        <dc:creator>Chuck Lever &lt;chuck.lever@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>896e090e - Revert &quot;NFSv4.2: Change the default KConfig value for READ_PLUS&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#896e090e</link>
        <description>Revert &quot;NFSv4.2: Change the default KConfig value for READ_PLUS&quot;This reverts commit 7fd461c47c6cfab4ca4d003790ec276209e52978.Unfortunately, it has come to our attention that there is still a bugsomewhere in the READ_PLUS code that can result in nfsroot systems onARM to crash during boot.Let&apos;s do the right thing and revert this change so we don&apos;t breakpeople&apos;s nfsroot setups.Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;Signed-off-by: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Wed, 15 Feb 2023 21:49:22 +0000</pubDate>
        <dc:creator>Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;</dc:creator>
    </item>
<item>
        <title>7fd461c4 - NFSv4.2: Change the default KConfig value for READ_PLUS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#7fd461c4</link>
        <description>NFSv4.2: Change the default KConfig value for READ_PLUSNow that we&apos;ve worked out performance issues and have a server patchaddressing the failed xfstests, we can safely enable this feature bydefault.Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;Signed-off-by: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Wed, 30 Nov 2022 18:15:27 +0000</pubDate>
        <dc:creator>Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;</dc:creator>
    </item>
<item>
        <title>830f1111 - NFS: Replace readdir&apos;s use of xxhash() with hash_64()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#830f1111</link>
        <description>NFS: Replace readdir&apos;s use of xxhash() with hash_64()Both xxhash() and hash_64() appear to give similarly low collisionrates with a standard linearly increasing readdir offset. They both givesimilarly higher collision rates when applied to ext4&apos;s offsets.So switch to using the standard hash_64().Signed-off-by: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Thu, 31 Mar 2022 00:00:07 +0000</pubDate>
        <dc:creator>Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;</dc:creator>
    </item>
<item>
        <title>f648022f - NFS: Convert readdir page cache to use a cookie based index</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#f648022f</link>
        <description>NFS: Convert readdir page cache to use a cookie based indexInstead of using a linear index to address the pages, use the cookie ofthe first entry, since that is what we use to match the page anyway.This allows us to avoid re-reading the entire cache on a seekdir() typeof operation. The latter is very common when re-exporting NFS, and is amajor performance drain.The change does affect our duplicate cookie detection, since we can nolonger rely on the page index as a linear offset for detecting whetherwe looped backwards. However since we no longer do a linear searchthrough all the pages on each call to nfs_readdir(), this is less of aconcern than it was previously.The other downside is that invalidate_mapping_pages() no longer can usethe page index to avoid clearing pages that have been read. A subsequentpatch will restore the functionality this provides to the &apos;ls -l&apos;heuristic.Signed-off-by: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Wed, 23 Feb 2022 16:31:51 +0000</pubDate>
        <dc:creator>Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;</dc:creator>
    </item>
<item>
        <title>a6b5a28e - nfs: Convert to new fscache volume/cookie API</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#a6b5a28e</link>
        <description>nfs: Convert to new fscache volume/cookie APIChange the nfs filesystem to support fscache&apos;s indexing rewrite andreenable caching in nfs.The following changes have been made: (1) The fscache_netfs struct is no more, and there&apos;s no need to register     the filesystem as a whole. (2) The session cookie is now an fscache_volume cookie, allocated with     fscache_acquire_volume().  That takes three parameters: a string     representing the &quot;volume&quot; in the index, a string naming the cache to     use (or NULL) and a u64 that conveys coherency metadata for the     volume.     For nfs, I&apos;ve made it render the volume name string as:        &quot;nfs,&lt;ver&gt;,&lt;family&gt;,&lt;address&gt;,&lt;port&gt;,&lt;fsidH&gt;,&lt;fsidL&gt;*&lt;,param&gt;[,&lt;uniq&gt;]&quot; (3) The fscache_cookie_def is no more and needed information is passed     directly to fscache_acquire_cookie().  The cache no longer calls back     into the filesystem, but rather metadata changes are indicated at     other times.     fscache_acquire_cookie() is passed the same keying and coherency     information as before. (4) fscache_enable/disable_cookie() have been removed.     Call fscache_use_cookie() and fscache_unuse_cookie() when a file is     opened or closed to prevent a cache file from being culled and to keep     resources to hand that are needed to do I/O.     If a file is opened for writing, we invalidate it with     FSCACHE_INVAL_DIO_WRITE in lieu of doing writeback to the cache,     thereby making it cease caching until all currently open files are     closed.  This should give the same behaviour as the uptream code.     Making the cache store local modifications isn&apos;t straightforward for     NFS, so that&apos;s left for future patches. (5) fscache_invalidate() now needs to be given uptodate auxiliary data and     a file size.  It also takes a flag to indicate if this was due to a     DIO write. (6) Call nfs_fscache_invalidate() with FSCACHE_INVAL_DIO_WRITE on a file     to which a DIO write is made. (7) Call fscache_note_page_release() from nfs_release_page(). (8) Use a killable wait in nfs_vm_page_mkwrite() when waiting for     PG_fscache to be cleared. (9) The functions to read and write data to/from the cache are stubbed out     pending a conversion to use netfslib.Changes=======ver #3: - Added missing =n fallback for nfs_fscache_release_file()[1][2].ver #2: - Use gfpflags_allow_blocking() rather than using flag directly. - fscache_acquire_volume() now returns errors. - Remove NFS_INO_FSCACHE as it&apos;s no longer used. - Need to unuse a cookie on file-release, not inode-clear.Signed-off-by: Dave Wysochanski &lt;dwysocha@redhat.com&gt;Co-developed-by: David Howells &lt;dhowells@redhat.com&gt;Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;Tested-by: Dave Wysochanski &lt;dwysocha@redhat.com&gt;Acked-by: Jeff Layton &lt;jlayton@kernel.org&gt;cc: Trond Myklebust &lt;trond.myklebust@hammerspace.com&gt;cc: Anna Schumaker &lt;anna.schumaker@netapp.com&gt;cc: linux-nfs@vger.kernel.orgcc: linux-cachefs@redhat.comLink: https://lore.kernel.org/r/202112100804.nksO8K4u-lkp@intel.com/ [1]Link: https://lore.kernel.org/r/202112100957.2oEDT20W-lkp@intel.com/ [2]Link: https://lore.kernel.org/r/163819668938.215744.14448852181937731615.stgit@warthog.procyon.org.uk/ # v1Link: https://lore.kernel.org/r/163906979003.143852.2601189243864854724.stgit@warthog.procyon.org.uk/ # v2Link: https://lore.kernel.org/r/163967182112.1823006.7791504655391213379.stgit@warthog.procyon.org.uk/ # v3Link: https://lore.kernel.org/r/164021575950.640689.12069642327533368467.stgit@warthog.procyon.org.uk/ # v4

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Sat, 14 Nov 2020 18:43:54 +0000</pubDate>
        <dc:creator>Dave Wysochanski &lt;dwysocha@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>01491a75 - fscache, cachefiles: Disable configuration</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#01491a75</link>
        <description>fscache, cachefiles: Disable configurationDisable fscache and cachefiles in Kconfig whilst it is rewritten.Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;cc: linux-cachefs@redhat.comLink: https://lore.kernel.org/r/163819576672.215744.12444272479560406780.stgit@warthog.procyon.org.uk/ # v1Link: https://lore.kernel.org/r/163906882835.143852.11073015983885872901.stgit@warthog.procyon.org.uk/ # v2Link: https://lore.kernel.org/r/163967075113.1823006.277316290062782998.stgit@warthog.procyon.org.uk/ # v3Link: https://lore.kernel.org/r/164021481179.640689.2004199594774033658.stgit@warthog.procyon.org.uk/ # v4

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Mon, 25 Oct 2021 20:41:26 +0000</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>a0590473 - nfs: fix PNFS_FLEXFILE_LAYOUT Kconfig default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#a0590473</link>
        <description>nfs: fix PNFS_FLEXFILE_LAYOUT Kconfig defaultThis follows what was done in 8c2fabc6542d9d0f8b16bd1045c2eda59bdcde13.With the default being m, it&apos;s impossible to build the module into thekernel.Signed-off-by: Timo Rothenpieler &lt;timo@rothenpieler.org&gt;Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Tue, 23 Feb 2021 14:19:01 +0000</pubDate>
        <dc:creator>Timo Rothenpieler &lt;timo@rothenpieler.org&gt;</dc:creator>
    </item>
<item>
        <title>21e31401 - NFS: Disable READ_PLUS by default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#21e31401</link>
        <description>NFS: Disable READ_PLUS by defaultWe&apos;ve been seeing failures with xfstests generic/091 and generic/263when using READ_PLUS. I&apos;ve made some progress on these issues, and thetests fail later on but still don&apos;t pass. Let&apos;s disable READ_PLUS bydefault until we can work out what is going on.Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Thu, 03 Dec 2020 20:18:39 +0000</pubDate>
        <dc:creator>Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;</dc:creator>
    </item>
<item>
        <title>3eb30c51 - Documentation: nfsroot.rst: Fix references to nfsroot.rst</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#3eb30c51</link>
        <description>Documentation: nfsroot.rst: Fix references to nfsroot.rstWhen converting and moving nfsroot.txt to nfsroot.rst the references tothe old text file was not updated to match the change, fix this.Fixes: f9a9349846f92b2d (&quot;Documentation: nfsroot.txt: convert to ReST&quot;)Signed-off-by: Niklas S&#246;derlund &lt;niklas.soderlund+renesas@ragnatech.se&gt;Reviewed-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Link: https://lore.kernel.org/r/20200212181332.520545-1-niklas.soderlund+renesas@ragnatech.seSigned-off-by: Jonathan Corbet &lt;corbet@lwn.net&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Wed, 12 Feb 2020 18:13:32 +0000</pubDate>
        <dc:creator>Niklas S&#246;derlund &lt;niklas.soderlund+renesas@ragnatech.se&gt;</dc:creator>
    </item>
<item>
        <title>b24ee6c6 - NFS: allow deprecation of NFS UDP protocol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/nfs/Kconfig#b24ee6c6</link>
        <description>NFS: allow deprecation of NFS UDP protocolAdd a kernel config CONFIG_NFS_DISABLE_UDP_SUPPORT to disallow NFSUDP mounts and enable it by default.Signed-off-by: Olga Kornievskaia &lt;kolga@netapp.com&gt;Signed-off-by: Anna Schumaker &lt;Anna.Schumaker@Netapp.com&gt;

            List of files:
            /linux-6.15/fs/nfs/Kconfig</description>
        <pubDate>Mon, 16 Dec 2019 21:34:02 +0000</pubDate>
        <dc:creator>Olga Kornievskaia &lt;olga.kornievskaia@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
