<?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>ee1c8e6b - smb: client: Deduplicate &quot;select NETFS_SUPPORT&quot; in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/smb/client/Kconfig#ee1c8e6b</link>
        <description>smb: client: Deduplicate &quot;select NETFS_SUPPORT&quot; in KconfigRepeating automatically selected options in Kconfig files is redundant, solet&apos;s delete repeated &quot;select NETFS_SUPPORT&quot; that was added accidentally.Fixes: 69c3c023af25 (&quot;cifs: Implement netfslib hooks&quot;)Signed-off-by: Dragan Simic &lt;dsimic@manjaro.org&gt;Signed-off-by: Steve French &lt;stfrench@microsoft.com&gt;

            List of files:
            /linux-6.15/fs/smb/client/Kconfig</description>
        <pubDate>Tue, 17 Dec 2024 09:25:10 +0000</pubDate>
        <dc:creator>Dragan Simic &lt;dsimic@manjaro.org&gt;</dc:creator>
    </item>
<item>
        <title>d14bbfff - smb3: mark compression as CONFIG_EXPERIMENTAL and fix missing compression operation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/smb/client/Kconfig#d14bbfff</link>
        <description>smb3: mark compression as CONFIG_EXPERIMENTAL and fix missing compression operationMove SMB3.1.1 compression code into experimental config option,and fix the compress mount option. Implement unchained LZ77&quot;plain&quot; compression algorithm as per MS-XCA specificationsection &quot;2.3 Plain LZ77 Compression Algorithm Details&quot;.Signed-off-by: Enzo Matsumiya &lt;ematsumiya@suse.de&gt;Signed-off-by: Steve French &lt;stfrench@microsoft.com&gt;

            List of files:
            /linux-6.15/fs/smb/client/Kconfig</description>
        <pubDate>Fri, 26 Jul 2024 21:30:23 +0000</pubDate>
        <dc:creator>Steve French &lt;stfrench@microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>69c3c023 - cifs: Implement netfslib hooks</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/smb/client/Kconfig#69c3c023</link>
        <description>cifs: Implement netfslib hooksProvide implementation of the netfslib hooks that will be used by netfslibto ask cifs to set up and perform operations.  Of particular note are (*) cifs_clamp_length() - This is used to negotiate the size of the next     subrequest in a read request, taking into account the credit available     and the rsize.  The credits are attached to the subrequest. (*) cifs_req_issue_read() - This is used to issue a subrequest that has     been set up and clamped. (*) cifs_prepare_write() - This prepares to fill a subrequest by picking a     channel, reopening the file and requesting credits so that we can set     the maximum size of the subrequest and also sets the maximum number of     segments if we&apos;re doing RDMA. (*) cifs_issue_write() - This releases any unneeded credits and issues an     asynchronous data write for the contiguous slice of file covered by     the subrequest.  This should possibly be folded in to all     -&gt;async_writev() ops and that called directly. (*) cifs_begin_writeback() - This gets the cached writable handle through     which we do writeback (this does not affect writethrough, unbuffered     or direct writes).At this point, cifs is not wired up to actually *use* netfslib; that willbe done in a subsequent patch.Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;cc: Steve French &lt;sfrench@samba.org&gt;cc: Shyam Prasad N &lt;nspmangalore@gmail.com&gt;cc: Rohith Surabattula &lt;rohiths.msft@gmail.com&gt;cc: Jeff Layton &lt;jlayton@kernel.org&gt;cc: linux-cifs@vger.kernel.orgcc: netfs@lists.linux.devcc: linux-fsdevel@vger.kernel.orgcc: linux-mm@kvack.org

            List of files:
            /linux-6.15/fs/smb/client/Kconfig</description>
        <pubDate>Fri, 06 Oct 2023 17:16:15 +0000</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>de548452 - fs/smb/client: Use common code in client</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/smb/client/Kconfig#de548452</link>
        <description>fs/smb/client: Use common code in clientNow we&apos;ve got the common code, use it for the client as well.Note there&apos;s a change here where we&apos;re using the server version ofUniStrcat now which had different types (__le16 vs wchar_t) butit&apos;s not interpreting the value other than checking for 0, howeverwe do need casts to keep sparse happy.Signed-off-by: Dr. David Alan Gilbert &lt;linux@treblig.org&gt;Reviewed-by: Dave Kleikamp &lt;dave.kleikamp@oracle.com&gt;Signed-off-by: Steve French &lt;stfrench@microsoft.com&gt;

            List of files:
            /linux-6.15/fs/smb/client/Kconfig</description>
        <pubDate>Thu, 17 Aug 2023 00:22:31 +0000</pubDate>
        <dc:creator>Dr. David Alan Gilbert &lt;linux@treblig.org&gt;</dc:creator>
    </item>
<item>
        <title>38c8a9a5 - smb: move client and server files to common directory fs/smb</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/smb/client/Kconfig#38c8a9a5</link>
        <description>smb: move client and server files to common directory fs/smbMove CIFS/SMB3 related client and server files (cifs.ko and ksmbd.koand helper modules) to new fs/smb subdirectory:   fs/cifs --&gt; fs/smb/client   fs/ksmbd --&gt; fs/smb/server   fs/smbfs_common --&gt; fs/smb/commonSuggested-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Acked-by: Namjae Jeon &lt;linkinjeon@kernel.org&gt;Signed-off-by: Steve French &lt;stfrench@microsoft.com&gt;

            List of files:
            /linux-6.15/fs/smb/client/Kconfig</description>
        <pubDate>Mon, 22 May 2023 01:46:30 +0000</pubDate>
        <dc:creator>Steve French &lt;stfrench@microsoft.com&gt;</dc:creator>
    </item>
</channel>
</rss>
