<?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>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>36d179fd6bea35698d53444b7bd3025fa3788266 - Merge tag &apos;nfsd-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#36d179fd6bea35698d53444b7bd3025fa3788266</link>
        <description>Merge tag &apos;nfsd-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linuxPull nfsd updates from Chuck Lever: - filehandle signing to defend against filehandle-guessing attacks   (Benjamin Coddington)   The server now appends a SipHash-2-4 MAC to each filehandle when   the new &quot;sign_fh&quot; export option is enabled. NFSD then verifies   filehandles received from clients against the expected MAC;   mismatches return NFS error STALE - convert the entire NLMv4 server-side XDR layer from hand-written C to   xdrgen-generated code, spanning roughly thirty patches (Chuck Lever)   XDR functions are generally boilerplate code and are easy to get   wrong. The goals of this conversion are improved memory safety, lower   maintenance burden, and groundwork for eventual Rust code generation   for these functions. - improve pNFS block/SCSI layout robustness with two related changes   (Dai Ngo)   SCSI persistent reservation fencing is now tracked per client and   per device via an xarray, to avoid both redundant preempt operations   on devices already fenced and a potential NFSD deadlock when all nfsd   threads are waiting for a layout return. - scalability and infrastructure improvements   Sincere thanks to all contributors, reviewers, testers, and bug   reporters who participated in the v7.1 NFSD development cycle.* tag &apos;nfsd-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux: (83 commits)  NFSD: Docs: clean up pnfs server timeout docs  nfsd: fix comment typo in nfsxdr  nfsd: fix comment typo in nfs3xdr  NFSD: convert callback RPC program to per-net namespace  NFSD: use per-operation statidx for callback procedures  svcrdma: Use contiguous pages for RDMA Read sink buffers  SUNRPC: Add svc_rqst_page_release() helper  SUNRPC: xdr.h: fix all kernel-doc warnings  svcrdma: Factor out WR chain linking into helper  svcrdma: Add Write chunk WRs to the RPC&apos;s Send WR chain  svcrdma: Clean up use of rdma-&gt;sc_pd-&gt;device  svcrdma: Clean up use of rdma-&gt;sc_pd-&gt;device in Receive paths  svcrdma: Add fair queuing for Send Queue access  SUNRPC: Optimize rq_respages allocation in svc_alloc_arg  SUNRPC: Track consumed rq_pages entries  svcrdma: preserve rq_next_page in svc_rdma_save_io_pages  SUNRPC: Handle NULL entries in svc_rqst_release_pages  SUNRPC: Allocate a separate Reply page array  SUNRPC: Tighten bounds checking in svc_rqst_replace_page  NFSD: Sign filehandles  ...

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 19:44:02 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4f406a2c1e23b03c8f5920318a0effb15ba238da - lockd: Remove dead code from fs/lockd/xdr4.c</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#4f406a2c1e23b03c8f5920318a0effb15ba238da</link>
        <description>lockd: Remove dead code from fs/lockd/xdr4.cNow that all NLMv4 server-side procedures use XDR encoder anddecoder functions generated by xdrgen, the hand-written code infs/lockd/xdr4.c is no longer needed. This file contained theoriginal XDR processing logic that has been systematicallyreplaced throughout this series.Remove the file and its Makefile reference to eliminate thedead code. The helper function nlm4svc_set_file_lock_range()is still needed by the generated code, so move it to xdr4.has an inline function where it remains accessible.Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Tue, 17 Feb 2026 23:07:21 +0100</pubDate>
        <dc:creator>Chuck Lever &lt;chuck.lever@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>5bc37b759ec0cdde2c652a2637d704f2d6306617 - Documentation: Add the RPC language description of NLM version 4</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#5bc37b759ec0cdde2c652a2637d704f2d6306617</link>
        <description>Documentation: Add the RPC language description of NLM version 4In order to generate source code to encode and decode NLMv4 protocolelements, include a copy of the RPC language description of NLMv4for xdrgen to process. The language description is an amalgam ofRFC 1813 and the Open Group&apos;s XNFS specification:  https://pubs.opengroup.org/onlinepubs/9629799/chap10.htmThe C code committed here was generated from the new nlm4.x fileusing tools/net/sunrpc/xdrgen/xdrgen.The goals of replacing hand-written XDR functions with ones thatare tool-generated are to improve memory safety and make XDRencoding and decoding less brittle to maintain.The xdrgen utility derives both the type definitions and theencode/decode functions directly from protocol specifications,using names and symbols familiar to anyone who knows those specs.Unlike hand-written code that can inadvertently diverge from thespecification, xdrgen guarantees that the generated code matchesthe specification exactly.We would eventually like xdrgen to generate Rust code as well,making the conversion of the kernel&apos;s NFS stacks to use Rust justa little easier for us.Reviewed-by: Jeff Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Tue, 17 Feb 2026 23:06:53 +0100</pubDate>
        <dc:creator>Chuck Lever &lt;chuck.lever@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>bbfd5594756011167b8f8de9a00e0c946afda1e6 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#bbfd5594756011167b8f8de9a00e0c946afda1e6</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in a67221b5eb8d (&quot;drm/i915/dp: Return min bpc supported by source instead of 0&quot;)in order to fix build breakage on GCC 9.4.0 (from Ubuntu 20.04).Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Wed, 28 May 2025 09:20:17 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>db5302ae571beec635c1a96e7f72926a4e65195e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#db5302ae571beec635c1a96e7f72926a4e65195e</link>
        <description>Merge drm/drm-next into drm-intel-nextBackmerge to sync with v6.15-rc, xe, and specifically async flip changesin drm-misc.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Fri, 16 May 2025 09:22:36 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>4f9786035f9e519db41375818e1d0b5f20da2f10 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#4f9786035f9e519db41375818e1d0b5f20da2f10</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.16 merge window.

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Mon, 02 Jun 2025 06:41:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d51b9d81f7883f526b26e3ab903e646274aebeb1 - Merge tag &apos;v6.15-rc6&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#d51b9d81f7883f526b26e3ab903e646274aebeb1</link>
        <description>Merge tag &apos;v6.15-rc6&apos; into nextSync up with mainline to bring in xpad controller changes.

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Fri, 16 May 2025 01:20:39 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>844e31bbaef7c8a6ff2c0fbac45c0c85b5484482 - Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#844e31bbaef7c8a6ff2c0fbac45c0c85b5484482</link>
        <description>Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into msm-nextMerge drm-misc-next to get commit Fixes: fec450ca15af (&quot;drm/display:hdmi: provide central data authority for ACR params&quot;).Signed-off-by: Rob Clark &lt;robdclark@chromium.org&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Tue, 29 Apr 2025 22:42:29 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>3ab7ae8e07f888f223027f0ef84d33e43919ad55 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#3ab7ae8e07f888f223027f0ef84d33e43919ad55</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerge to bring in linux 6.15-rc.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Thu, 24 Apr 2025 13:34:55 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1afba39f9305fe4061a4e70baa6ebab9d41459da - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#1afba39f9305fe4061a4e70baa6ebab9d41459da</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get v6.15-rc1 into drm-misc-next. Also fixes abuild issue when enabling CONFIG_DRM_SCHED_KUNIT_TEST.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Mon, 07 Apr 2025 13:47:40 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9f13acb2406a3aed90c6738b3a2f1c0e43118cbd - Merge tag &apos;v6.15-rc1&apos; into x86/cpu, to refresh the branch with upstream changes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#9f13acb2406a3aed90c6738b3a2f1c0e43118cbd</link>
        <description>Merge tag &apos;v6.15-rc1&apos; into x86/cpu, to refresh the branch with upstream changesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Fri, 11 Apr 2025 11:13:27 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6ce0fdaae043803bb324d915ce0fe43316bf1e81 - Merge tag &apos;v6.15-rc1&apos; into x86/asm, to refresh the branch</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#6ce0fdaae043803bb324d915ce0fe43316bf1e81</link>
        <description>Merge tag &apos;v6.15-rc1&apos; into x86/asm, to refresh the branchSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Wed, 09 Apr 2025 21:39:43 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1260ed77798502de9c98020040d2995008de10cc - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#1260ed77798502de9c98020040d2995008de10cc</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesBackmerging to get updates from v6.15-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Tue, 08 Apr 2025 10:15:47 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b6dde1e5275ed82e4c89844e95a03f95ca48be13 - Merge tag &apos;nfsd-6.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#b6dde1e5275ed82e4c89844e95a03f95ca48be13</link>
        <description>Merge tag &apos;nfsd-6.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linuxPull nfsd updates from Chuck Lever: &quot;Neil Brown contributed more scalability improvements to NFSD&apos;s open  file cache, and Jeff Layton contributed a menagerie of repairs to  NFSD&apos;s NFSv4 callback / backchannel implementation.  Mike Snitzer contributed a change to NFS re-export support that  disables support for file locking on a re-exported NFSv4 mount. This  is because NFSv4 state recovery is currently difficult if not  impossible for re-exported NFS mounts. The change aims to prevent data  integrity exposures after the re-export server crashes.  Work continues on the evolving NFSD netlink administrative API.  Many thanks to the contributors, reviewers, testers, and bug reporters  who participated during the v6.15 development cycle&quot;* tag &apos;nfsd-6.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux: (45 commits)  NFSD: Add a Kconfig setting to enable delegated timestamps  sysctl: Fixes nsm_local_state bounds  nfsd: use a long for the count in nfsd4_state_shrinker_count()  nfsd: remove obsolete comment from nfs4_alloc_stid  nfsd: remove unneeded forward declaration of nfsd4_mark_cb_fault()  nfsd: reorganize struct nfs4_delegation for better packing  nfsd: handle errors from rpc_call_async()  nfsd: move cb_need_restart flag into cb_flags  nfsd: replace CB_GETATTR_BUSY with NFSD4_CALLBACK_RUNNING  nfsd: eliminate cl_ra_cblist and NFSD4_CLIENT_CB_RECALL_ANY  nfsd: prevent callback tasks running concurrently  nfsd: disallow file locking and delegations for NFSv4 reexport  nfsd: filecache: drop the list_lru lock during lock gc scans  nfsd: filecache: don&apos;t repeatedly add/remove files on the lru list  nfsd: filecache: introduce NFSD_FILE_RECENT  nfsd: filecache: use list_lru_walk_node() in nfsd_file_gc()  nfsd: filecache: use nfsd_file_dispose_list() in nfsd_file_close_inode_sync()  NFSD: Re-organize nfsd_file_gc_worker()  nfsd: filecache: remove race handling.  fs: nfs: acl: Avoid -Wflex-array-member-not-at-end warning  ...

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Tue, 01 Apr 2025 02:28:17 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>9a28ac1762a7a3a6ab4f82ff655843d6ab3ca62c - lockd: add netlink control interface</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#9a28ac1762a7a3a6ab4f82ff655843d6ab3ca62c</link>
        <description>lockd: add netlink control interfaceThe legacy rpc.nfsd tool will set the nlm_grace_period if the NFSv4grace period is set. nfsdctl is missing this functionality, so add a newnetlink control interface for lockd that it can use. For now, it onlyallows setting the grace period, and the tcp and udp listener ports.lockd currently uses module parameters and sysctls for configuration, soall of its settings are global. With this change, lockd now tracks thesevalues on a per-net-ns basis. It will only fall back to using the globalvalues if any of them are 0.Finally, as a backward compatibility measure, if updating the nlmsettings in the init_net namespace, also update the legacy globalvalues to match.Link: https://issues.redhat.com/browse/RHEL-71698Signed-off-by: Jeff Layton &lt;jlayton@kernel.org&gt;Signed-off-by: Chuck Lever &lt;chuck.lever@oracle.com&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Wed, 08 Jan 2025 22:00:15 +0100</pubDate>
        <dc:creator>Jeff Layton &lt;jlayton@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c771600c6af14749609b49565ffb4cac2959710d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#c771600c6af14749609b49565ffb4cac2959710d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextWe need4ba4f1afb6a9 (&quot;perf: Generic hotplug support for a PMU with a scope&quot;)in order to land a i915 PMU simplification and a fix. That landed in 6.12and we are stuck at 6.9 so lets bump things forward.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 10:29:14 +0100</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>36ec807b627b4c0a0a382f0ae48eac7187d14b2b - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#36ec807b627b4c0a0a382f0ae48eac7187d14b2b</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.12 merge window.

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Fri, 20 Sep 2024 10:24:24 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f057b57270c2a17d3f45c177e9434fa5745caa48 - Merge branch &apos;ib/6.11-rc6-matrix-keypad-spitz&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#f057b57270c2a17d3f45c177e9434fa5745caa48</link>
        <description>Merge branch &apos;ib/6.11-rc6-matrix-keypad-spitz&apos; into nextBring in changes removing support for platform data from matrix-keypaddriver.

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Fri, 06 Sep 2024 06:49:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>66e72a01b60ae6950ddbb3585fdc1424d303e14b - Merge tag &apos;v6.11-rc1&apos; into clk-meson-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/lockd/Makefile#66e72a01b60ae6950ddbb3585fdc1424d303e14b</link>
        <description>Merge tag &apos;v6.11-rc1&apos; into clk-meson-nextLinux 6.11-rc1

            List of files:
            /linux/fs/lockd/Makefile</description>
        <pubDate>Mon, 29 Jul 2024 16:32:02 +0200</pubDate>
        <dc:creator>Jerome Brunet &lt;jbrunet@baylibre.com&gt;</dc:creator>
    </item>
</channel>
</rss>
