<?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/drivers/block/drbd/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/drivers/block/drbd/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>7fe6ac157b7e15c8976bd62ad7cb98e248884e83 - Merge tag &apos;for-7.1/block-20260411&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#7fe6ac157b7e15c8976bd62ad7cb98e248884e83</link>
        <description>Merge tag &apos;for-7.1/block-20260411&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linuxPull block updates from Jens Axboe: - Add shared memory zero-copy I/O support for ublk, bypassing per-I/O   copies between kernel and userspace by matching registered buffer   PFNs at I/O time. Includes selftests. - Refactor bio integrity to support filesystem initiated integrity   operations and arbitrary buffer alignment. - Clean up bio allocation, splitting bio_alloc_bioset() into clear fast   and slow paths. Add bio_await() and bio_submit_or_kill() helpers,   unify synchronous bi_end_io callbacks. - Fix zone write plug refcount handling and plug removal races. Add   support for serializing zone writes at QD=1 for rotational zoned   devices, yielding significant throughput improvements. - Add SED-OPAL ioctls for Single User Mode management and a STACK_RESET   command. - Add io_uring passthrough (uring_cmd) support to the BSG layer. - Replace pp_buf in partition scanning with struct seq_buf. - zloop improvements and cleanups. - drbd genl cleanup, switching to pre_doit/post_doit. - NVMe pull request via Keith:      - Fabrics authentication updates      - Enhanced block queue limits support      - Workqueue usage updates      - A new write zeroes device quirk      - Tagset cleanup fix for loop device - MD pull requests via Yu Kuai:      - Fix raid5 soft lockup in retry_aligned_read()      - Fix raid10 deadlock with check operation and nowait requests      - Fix raid1 overlapping writes on writemostly disks      - Fix sysfs deadlock on array_state=clear      - Proactive RAID-5 parity building with llbitmap, with        write_zeroes_unmap optimization for initial sync      - Fix llbitmap barrier ordering, rdev skipping, and bitmap_ops        version mismatch fallback      - Fix bcache use-after-free and uninitialized closure      - Validate raid5 journal metadata payload size      - Various cleanups - Various other fixes, improvements, and cleanups* tag &apos;for-7.1/block-20260411&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux: (146 commits)  ublk: fix tautological comparison warning in ublk_ctrl_reg_buf  scsi: bsg: fix buffer overflow in scsi_bsg_uring_cmd()  block: refactor blkdev_zone_mgmt_ioctl  MAINTAINERS: update ublk driver maintainer email  Documentation: ublk: address review comments for SHMEM_ZC docs  ublk: allow buffer registration before device is started  ublk: replace xarray with IDA for shmem buffer index allocation  ublk: simplify PFN range loop in __ublk_ctrl_reg_buf  ublk: verify all pages in multi-page bvec fall within registered range  ublk: widen ublk_shmem_buf_reg.len to __u64 for 4GB buffer support  xfs: use bio_await in xfs_zone_gc_reset_sync  block: add a bio_submit_or_kill helper  block: factor out a bio_await helper  block: unify the synchronous bi_end_io callbacks  xfs: fix number of GC bvecs  selftests/ublk: add read-only buffer registration test  selftests/ublk: add filesystem fio verify test for shmem_zc  selftests/ublk: add hugetlbfs shmem_zc test for loop target  selftests/ublk: add shared memory zero-copy test  selftests/ublk: add UBLK_F_SHMEM_ZC support for loop target  ...

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Tue, 14 Apr 2026 00:51:31 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>a9c4b1d37622ed01b75f94a4f68cf55f33153a31 - drbd: remove DRBD_GENLA_F_MANDATORY flag handling</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#a9c4b1d37622ed01b75f94a4f68cf55f33153a31</link>
        <description>drbd: remove DRBD_GENLA_F_MANDATORY flag handlingDRBD used a custom mechanism to mark netlink attributes as &quot;mandatory&quot;:bit 14 of nla_type was repurposed as DRBD_GENLA_F_MANDATORY. Attributessent from userspace that had this bit present and that were unknownto the kernel would lead to an error.Since commit ef6243acb478 (&quot;genetlink: optionally validate strictly/dumps&quot;),the generic netlink layer rejects unknown top-level attributes whenstrict validation is enabled. DRBD never opted out of strictvalidation, so unknown top-level attributes are already rejected bythe netlink core.The mandatory flag mechanism was required for nested attributes, becausethese are parsed liberally, silently dropping attributes unknown to thekernel.This prepares for the move to a new YNL-based family, which will use thenow-default strict parsing.The current family is not expected to gain any new attributes, whichmakes this change safe.Old userspace that still sets bit 14 is unaffected: nla_type()strips it before __nla_validate_parse() performs attribute validation,so the bit never reaches DRBD.Remove all references to the mandatory flag in DRBD.Cc: Johannes Berg &lt;johannes.berg@intel.com&gt;Cc: Jakub Kicinski &lt;kuba@kernel.org&gt;Signed-off-by: Christoph B&#246;hmwalder &lt;christoph.boehmwalder@linbit.com&gt;Link: https://patch.msgid.link/20260403132953.2248751-1-christoph.boehmwalder@linbit.comSigned-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Fri, 03 Apr 2026 15:29:53 +0200</pubDate>
        <dc:creator>Christoph B&#246;hmwalder &lt;christoph.boehmwalder@linbit.com&gt;</dc:creator>
    </item>
<item>
        <title>9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.4 merge window.

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Tue, 02 May 2023 00:20:08 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ea68a3e9d14e9e0bf017d178fb4bd53b6deb1482 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#ea68a3e9d14e9e0bf017d178fb4bd53b6deb1482</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in commit from drm-next (earlier in drm-intel-next):1eca0778f4b3 (&quot;drm/i915: add struct i915_dsm to wrap dsm members together&quot;)In order to merge following patch to drm-intel-gt-next:https://patchwork.freedesktop.org/patch/530942/?series=114925&amp;rev=6Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Tue, 11 Apr 2023 14:43:45 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cecdd52a3dd312564f81a39df08378b7b39a2654 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#cecdd52a3dd312564f81a39df08378b7b39a2654</link>
        <description>Merge drm/drm-next into drm-intel-nextCatch up with 6.3-rc cycle...Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Tue, 28 Mar 2023 16:30:57 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e752ab11dcb48353727ea26eefd740155e028865 - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#e752ab11dcb48353727ea26eefd740155e028865</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-nextMerge drm-next into msm-next to pick up external clk and PM dependenciesfor improved a6xx GPU reset sequence.Signed-off-by: Rob Clark &lt;robdclark@chromium.org&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Mon, 20 Mar 2023 18:31:25 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>d26a3a6ce7e02f9c056ad992bcd9624735022337 - Merge tag &apos;v6.3-rc2&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#d26a3a6ce7e02f9c056ad992bcd9624735022337</link>
        <description>Merge tag &apos;v6.3-rc2&apos; into nextMerge with mainline to get of_property_present() and other newer APIs.

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Fri, 17 Mar 2023 12:01:30 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b3c9a04135bdbd3aabd5e9534bad0fe6df505f8a - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#b3c9a04135bdbd3aabd5e9534bad0fe6df505f8a</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesBackmerging to get latest upstream.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Mon, 13 Mar 2023 10:14:05 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>a1eccc574f977bd21a4ec8ac54bd73a2756bd281 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#a1eccc574f977bd21a4ec8ac54bd73a2756bd281</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get v6.3-rc1 and sync with the other DRM trees.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Mon, 13 Mar 2023 09:27:50 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b8fa3e3833c14151a47ebebbc5427dcfe94bb407 - Merge remote-tracking branch &apos;acme/perf-tools&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#b8fa3e3833c14151a47ebebbc5427dcfe94bb407</link>
        <description>Merge remote-tracking branch &apos;acme/perf-tools&apos; into perf-tools-nextTo pick up perf-tools fixes just merged upstream.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Fri, 10 Mar 2023 22:43:17 +0100</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>585a78c1f77be305b1f6adad392f16047fb66ffd - Merge branch &apos;linus&apos; into objtool/core, to pick up Xen dependencies</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#585a78c1f77be305b1f6adad392f16047fb66ffd</link>
        <description>Merge branch &apos;linus&apos; into objtool/core, to pick up Xen dependenciesPick up dependencies - freshly merged upstream via xen-next - before applyingdependent objtool changes.Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Thu, 23 Feb 2023 09:16:39 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7ae9fb1b7ecbb5d85d07857943f677fd1a559b18 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#7ae9fb1b7ecbb5d85d07857943f677fd1a559b18</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.3 merge window.

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Tue, 21 Feb 2023 20:19:49 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5b0ed5964928b0aaf0d644c17c886c7f5ea4bb3f - Merge tag &apos;for-6.3/block-2023-02-16&apos; of git://git.kernel.dk/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#5b0ed5964928b0aaf0d644c17c886c7f5ea4bb3f</link>
        <description>Merge tag &apos;for-6.3/block-2023-02-16&apos; of git://git.kernel.dk/linuxPull block updates from Jens Axboe: - NVMe updates via Christoph:      - Small improvements to the logging functionality (Amit Engel)      - Authentication cleanups (Hannes Reinecke)      - Cleanup and optimize the DMA mapping cod in the PCIe driver        (Keith Busch)      - Work around the command effects for Format NVM (Keith Busch)      - Misc cleanups (Keith Busch, Christoph Hellwig)      - Fix and cleanup freeing single sgl (Keith Busch) - MD updates via Song:      - Fix a rare crash during the takeover process      - Don&apos;t update recovery_cp when curr_resync is ACTIVE      - Free writes_pending in md_stop      - Change active_io to percpu - Updates to drbd, inching us closer to unifying the out-of-tree driver   with the in-tree one (Andreas, Christoph, Lars, Robert) - BFQ update adding support for multi-actuator drives (Paolo, Federico,   Davide) - Make brd compliant with REQ_NOWAIT (me) - Fix for IOPOLL and queue entering, fixing stalled IO waiting on   timeouts (me) - Fix for REQ_NOWAIT with multiple bios (me) - Fix memory leak in blktrace cleanup (Greg) - Clean up sbitmap and fix a potential hang (Kemeng) - Clean up some bits in BFQ, and fix a bug in the request injection   (Kemeng) - Clean up the request allocation and issue code, and fix some bugs   related to that (Kemeng) - ublk updates and fixes:      - Add support for unprivileged ublk (Ming)      - Improve device deletion handling (Ming)      - Misc (Liu, Ziyang) - s390 dasd fixes (Alexander, Qiheng) - Improve utility of request caching and fixes (Anuj, Xiao) - zoned cleanups (Pankaj) - More constification for kobjs (Thomas) - blk-iocost cleanups (Yu) - Remove bio splitting from drivers that don&apos;t need it (Christoph) - Switch blk-cgroups to use struct gendisk. Some of this is now   incomplete as select late reverts were done. (Christoph) - Add bvec initialization helpers, and convert callers to use that   rather than open-coding it (Christoph) - Misc fixes and cleanups (Jinke, Keith, Arnd, Bart, Li, Martin,   Matthew, Ulf, Zhong)* tag &apos;for-6.3/block-2023-02-16&apos; of git://git.kernel.dk/linux: (169 commits)  brd: use radix_tree_maybe_preload instead of radix_tree_preload  block: use proper return value from bio_failfast()  block: bio-integrity: Copy flags when bio_integrity_payload is cloned  block: Fix io statistics for cgroup in throttle path  brd: mark as nowait compatible  brd: check for REQ_NOWAIT and set correct page allocation mask  brd: return 0/-error from brd_insert_page()  block: sync mixed merged request&apos;s failfast with 1st bio&apos;s  Revert &quot;blk-cgroup: pin the gendisk in struct blkcg_gq&quot;  Revert &quot;blk-cgroup: pass a gendisk to blkg_lookup&quot;  Revert &quot;blk-cgroup: delay blk-cgroup initialization until add_disk&quot;  Revert &quot;blk-cgroup: delay calling blkcg_exit_disk until disk_release&quot;  Revert &quot;blk-cgroup: move the cgroup information to struct gendisk&quot;  nvme-pci: remove iod use_sgls  nvme-pci: fix freeing single sgl  block: ublk: check IO buffer based on flag need_get_data  s390/dasd: Fix potential memleak in dasd_eckd_init()  s390/dasd: sort out physical vs virtual pointers usage  block: Remove the ALLOC_CACHE_SLACK constant  block: make kobj_type structures constant  ...

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Mon, 20 Feb 2023 23:27:21 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>887b98c74fdf9ab44e93ad9166977cbbb766d2c2 - drbd: split off drbd_buildtag into separate file</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#887b98c74fdf9ab44e93ad9166977cbbb766d2c2</link>
        <description>drbd: split off drbd_buildtag into separate fileTo be more similar to what we do in the out-of-tree module and ease theupstreaming process.Signed-off-by: Christoph B&#246;hmwalder &lt;christoph.boehmwalder@linbit.com&gt;Reviewed-by: Joel Colledge &lt;joel.colledge@linbit.com&gt;Link: https://lore.kernel.org/r/20230113123506.144082-2-christoph.boehmwalder@linbit.comSigned-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Fri, 13 Jan 2023 13:35:04 +0100</pubDate>
        <dc:creator>Christoph B&#246;hmwalder &lt;christoph.boehmwalder@linbit.com&gt;</dc:creator>
    </item>
<item>
        <title>6f84981772535e670e4e2df051a672af229b6694 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#6f84981772535e670e4e2df051a672af229b6694</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging into drm-misc-next to get DRM accelerator infrastructure,which is required by ipuv driver.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Thu, 19 Jan 2023 10:56:12 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>407da561244b9d51e6a794d6305ba38ec2c9d907 - Merge tag &apos;v6.2-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#407da561244b9d51e6a794d6305ba38ec2c9d907</link>
        <description>Merge tag &apos;v6.2-rc3&apos; into nextMerge with mainline to bring in timer_shutdown_sync() API.

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Tue, 10 Jan 2023 05:28:19 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0d8eae7b124e2ddaee00f186fe922450faad0ed7 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#0d8eae7b124e2ddaee00f186fe922450faad0ed7</link>
        <description>Merge drm/drm-next into drm-intel-nextSync up with v6.2-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Mon, 02 Jan 2023 10:31:03 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b501d4dc83aa3940189b68045cadc8b3eac73988 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#b501d4dc83aa3940189b68045cadc8b3eac73988</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextSync after v6.2-rc1 landed in drm-next.We need to get some dependencies in place before we can mergethe fixes series from Gwan-gyeong and Chris.References: https://lore.kernel.org/all/Y6x5JCDnh2rvh4lA@intel.com/Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Fri, 30 Dec 2022 10:09:09 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6599e683db1bf22fee74302c47e31b9a42a1c3d2 - Merge tag &apos;v6.2-rc1&apos; into media_tree</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/block/drbd/Makefile#6599e683db1bf22fee74302c47e31b9a42a1c3d2</link>
        <description>Merge tag &apos;v6.2-rc1&apos; into media_treeLinux 6.2-rc1* tag &apos;v6.2-rc1&apos;: (14398 commits)  Linux 6.2-rc1  treewide: Convert del_timer*() to timer_shutdown*()  pstore: Properly assign mem_type property  pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES  cfi: Fix CFI failure with KASAN  perf python: Fix splitting CC into compiler and options  afs: Stop implementing -&gt;writepage()  afs: remove afs_cache_netfs and afs_zap_permits() declarations  afs: remove variable nr_servers  afs: Fix lost servers_outstanding count  ALSA: usb-audio: Add new quirk FIXED_RATE for JBL Quantum810 Wireless  ALSA: azt3328: Remove the unused function snd_azf3328_codec_outl()  gcov: add support for checksum field  test_maple_tree: add test for mas_spanning_rebalance() on insufficient data  maple_tree: fix mas_spanning_rebalance() on insufficient data  hugetlb: really allocate vma lock for all sharable vmas  kmsan: export kmsan_handle_urb  kmsan: include linux/vmalloc.h  mm/mempolicy: fix memory leak in set_mempolicy_home_node system call  mm, mremap: fix mremap() expanding vma with addr inside vma  ...

            List of files:
            /linux/drivers/block/drbd/Makefile</description>
        <pubDate>Wed, 28 Dec 2022 17:07:44 +0100</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
