<?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 mpage.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#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/mpage.c</description>
        <pubDate>Mon, 27 Apr 2026 08:26:49 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>d13e855ee923c2ae78307bf6c354305f1406b9e2 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#d13e855ee923c2ae78307bf6c354305f1406b9e2</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesTomi needs 7.0 to apply a patch from drm-misc-fixes.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 23 Apr 2026 12:43:06 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>500af712f9cb61e9e3d32760df0cc5dd4f3046aa - Merge branch &apos;for-7.1/winwing&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#500af712f9cb61e9e3d32760df0cc5dd4f3046aa</link>
        <description>Merge branch &apos;for-7.1/winwing&apos; into for-linus- support for rubmle effects in winwing driver (Ivan Gorinov)

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 16 Apr 2026 19:03:22 +0000</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>334fbe734e687404f346eba7d5d96ed2b44d35ab - Merge tag &apos;mm-stable-2026-04-13-21-45&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#334fbe734e687404f346eba7d5d96ed2b44d35ab</link>
        <description>Merge tag &apos;mm-stable-2026-04-13-21-45&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull MM updates from Andrew Morton: - &quot;maple_tree: Replace big node with maple copy&quot; (Liam Howlett)   Mainly prepararatory work for ongoing development but it does reduce   stack usage and is an improvement. - &quot;mm, swap: swap table phase III: remove swap_map&quot; (Kairui Song)   Offers memory savings by removing the static swap_map. It also yields   some CPU savings and implements several cleanups. - &quot;mm: memfd_luo: preserve file seals&quot; (Pratyush Yadav)   File seal preservation to LUO&apos;s memfd code - &quot;mm: zswap: add per-memcg stat for incompressible pages&quot; (Jiayuan   Chen)   Additional userspace stats reportng to zswap - &quot;arch, mm: consolidate empty_zero_page&quot; (Mike Rapoport)   Some cleanups for our handling of ZERO_PAGE() and zero_pfn - &quot;mm/kmemleak: Improve scan_should_stop() implementation&quot; (Zhongqiu   Han)   A robustness improvement and some cleanups in the kmemleak code - &quot;Improve khugepaged scan logic&quot; (Vernon Yang)   Improve khugepaged scan logic and reduce CPU consumption by   prioritizing scanning tasks that access memory frequently - &quot;Make KHO Stateless&quot; (Jason Miu)   Simplify Kexec Handover by transitioning KHO from an xarray-based   metadata tracking system with serialization to a radix tree data   structure that can be passed directly to the next kernel - &quot;mm: vmscan: add PID and cgroup ID to vmscan tracepoints&quot; (Thomas   Ballasi and Steven Rostedt)   Enhance vmscan&apos;s tracepointing - &quot;mm: arch/shstk: Common shadow stack mapping helper and   VM_NOHUGEPAGE&quot; (Catalin Marinas)   Cleanup for the shadow stack code: remove per-arch code in favour of   a generic implementation - &quot;Fix KASAN support for KHO restored vmalloc regions&quot; (Pasha Tatashin)   Fix a WARN() which can be emitted the KHO restores a vmalloc area - &quot;mm: Remove stray references to pagevec&quot; (Tal Zussman)   Several cleanups, mainly udpating references to &quot;struct pagevec&quot;,   which became folio_batch three years ago - &quot;mm: Eliminate fake head pages from vmemmap optimization&quot; (Kiryl   Shutsemau)   Simplify the HugeTLB vmemmap optimization (HVO) by changing how tail   pages encode their relationship to the head page - &quot;mm/damon/core: improve DAMOS quota efficiency for core layer   filters&quot; (SeongJae Park)   Improve two problematic behaviors of DAMOS that makes it less   efficient when core layer filters are used - &quot;mm/damon: strictly respect min_nr_regions&quot; (SeongJae Park)   Improve DAMON usability by extending the treatment of the   min_nr_regions user-settable parameter - &quot;mm/page_alloc: pcp locking cleanup&quot; (Vlastimil Babka)   The proper fix for a previously hotfixed SMP=n issue. Code   simplifications and cleanups ensued - &quot;mm: cleanups around unmapping / zapping&quot; (David Hildenbrand)   A bunch of cleanups around unmapping and zapping. Mostly   simplifications, code movements, documentation and renaming of   zapping functions - &quot;support batched checking of the young flag for MGLRU&quot; (Baolin Wang)   Batched checking of the young flag for MGLRU. It&apos;s part cleanups; one   benchmark shows large performance benefits for arm64 - &quot;memcg: obj stock and slab stat caching cleanups&quot; (Johannes Weiner)   memcg cleanup and robustness improvements - &quot;Allow order zero pages in page reporting&quot; (Yuvraj Sakshith)   Enhance free page reporting - it is presently and undesirably order-0   pages when reporting free memory. - &quot;mm: vma flag tweaks&quot; (Lorenzo Stoakes)   Cleanup work following from the recent conversion of the VMA flags to   a bitmap - &quot;mm/damon: add optional debugging-purpose sanity checks&quot; (SeongJae   Park)   Add some more developer-facing debug checks into DAMON core - &quot;mm/damon: test and document power-of-2 min_region_sz requirement&quot;   (SeongJae Park)   An additional DAMON kunit test and makes some adjustments to the   addr_unit parameter handling - &quot;mm/damon/core: make passed_sample_intervals comparisons   overflow-safe&quot; (SeongJae Park)   Fix a hard-to-hit time overflow issue in DAMON core - &quot;mm/damon: improve/fixup/update ratio calculation, test and   documentation&quot; (SeongJae Park)   A batch of misc/minor improvements and fixups for DAMON - &quot;mm: move vma_(kernel|mmu)_pagesize() out of hugetlb.c&quot; (David   Hildenbrand)   Fix a possible issue with dax-device when CONFIG_HUGETLB=n. Some code   movement was required. - &quot;zram: recompression cleanups and tweaks&quot; (Sergey Senozhatsky)   A somewhat random mix of fixups, recompression cleanups and   improvements in the zram code - &quot;mm/damon: support multiple goal-based quota tuning algorithms&quot;   (SeongJae Park)   Extend DAMOS quotas goal auto-tuning to support multiple tuning   algorithms that users can select - &quot;mm: thp: reduce unnecessary start_stop_khugepaged()&quot; (Breno Leitao)   Fix the khugpaged sysfs handling so we no longer spam the logs with   reams of junk when starting/stopping khugepaged - &quot;mm: improve map count checks&quot; (Lorenzo Stoakes)   Provide some cleanups and slight fixes in the mremap, mmap and vma   code - &quot;mm/damon: support addr_unit on default monitoring targets for   modules&quot; (SeongJae Park)   Extend the use of DAMON core&apos;s addr_unit tunable - &quot;mm: khugepaged cleanups and mTHP prerequisites&quot; (Nico Pache)   Cleanups to khugepaged and is a base for Nico&apos;s planned khugepaged   mTHP support - &quot;mm: memory hot(un)plug and SPARSEMEM cleanups&quot; (David Hildenbrand)   Code movement and cleanups in the memhotplug and sparsemem code - &quot;mm: remove CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE and cleanup   CONFIG_MIGRATION&quot; (David Hildenbrand)   Rationalize some memhotplug Kconfig support - &quot;change young flag check functions to return bool&quot; (Baolin Wang)   Cleanups to change all young flag check functions to return bool - &quot;mm/damon/sysfs: fix memory leak and NULL dereference issues&quot; (Josh   Law and SeongJae Park)   Fix a few potential DAMON bugs - &quot;mm/vma: convert vm_flags_t to vma_flags_t in vma code&quot; (Lorenzo   Stoakes)   Convert a lot of the existing use of the legacy vm_flags_t data type   to the new vma_flags_t type which replaces it. Mainly in the vma   code. - &quot;mm: expand mmap_prepare functionality and usage&quot; (Lorenzo Stoakes)   Expand the mmap_prepare functionality, which is intended to replace   the deprecated f_op-&gt;mmap hook which has been the source of bugs and   security issues for some time. Cleanups, documentation, extension of   mmap_prepare into filesystem drivers - &quot;mm/huge_memory: refactor zap_huge_pmd()&quot; (Lorenzo Stoakes)   Simplify and clean up zap_huge_pmd(). Additional cleanups around   vm_normal_folio_pmd() and the softleaf functionality are performed.* tag &apos;mm-stable-2026-04-13-21-45&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (369 commits)  mm: fix deferred split queue races during migration  mm/khugepaged: fix issue with tracking lock  mm/huge_memory: add and use has_deposited_pgtable()  mm/huge_memory: add and use normal_or_softleaf_folio_pmd()  mm: add softleaf_is_valid_pmd_entry(), pmd_to_softleaf_folio()  mm/huge_memory: separate out the folio part of zap_huge_pmd()  mm/huge_memory: use mm instead of tlb-&gt;mm  mm/huge_memory: remove unnecessary sanity checks  mm/huge_memory: deduplicate zap deposited table call  mm/huge_memory: remove unnecessary VM_BUG_ON_PAGE()  mm/huge_memory: add a common exit path to zap_huge_pmd()  mm/huge_memory: handle buggy PMD entry in zap_huge_pmd()  mm/huge_memory: have zap_huge_pmd return a boolean, add kdoc  mm/huge: avoid big else branch in zap_huge_pmd()  mm/huge_memory: simplify vma_is_specal_huge()  mm: on remap assert that input range within the proposed VMA  mm: add mmap_action_map_kernel_pages[_full]()  uio: replace deprecated mmap hook with mmap_prepare in uio_info  drivers: hv: vmbus: replace deprecated mmap hook with mmap_prepare  mm: allow handling of stacked mmap_prepare hooks in more drivers  ...

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Wed, 15 Apr 2026 19:59:16 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ff1c0c5d07028a84837950b619d30da623f8ddb2 - Merge branch &apos;timers/urgent&apos; into timers/core</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#ff1c0c5d07028a84837950b619d30da623f8ddb2</link>
        <description>Merge branch &apos;timers/urgent&apos; into timers/coreto resolve the conflict with urgent fixes.

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Sat, 11 Apr 2026 05:58:33 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>e7ef5ec6d1f0568e5c11ceeb729f412560ad8ef7 - regulator: fix OF node imbalance on reuse</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#e7ef5ec6d1f0568e5c11ceeb729f412560ad8ef7</link>
        <description>regulator: fix OF node imbalance on reuseJohan Hovold &lt;johan@kernel.org&gt; says:These drivers reuse the OF node of their parent multi-function devicebut fail to take another reference to balance the one dropped by theplatform bus code when unbinding the MFD and deregistering the childdevices.Fix this by using the intended helper for reusing OF nodes.Note that the first two patches will cause a trivial conflict with Doug&apos;sseries adding accessor functions for struct device flags which has now beenmerged to the driver-core tree:	https://lore.kernel.org/r/20260406232444.3117516-1-dianders@chromium.orgLink: https://patch.msgid.link/20260408073055.5183-1-johan@kernel.org

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 09 Apr 2026 19:19:36 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3f44bccdd6605d5d156c02ea2f861dcd30ef5dcd - Merge branch &apos;for-linus&apos; into for-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#3f44bccdd6605d5d156c02ea2f861dcd30ef5dcd</link>
        <description>Merge branch &apos;for-linus&apos; into for-nextPull 7.0-devel branch for further development of HD-audio codec quirks.Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 09 Apr 2026 06:31:21 +0000</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>00afb1811fa638dacf125dd1c343b7a181624dfd - Merge tag &apos;asoc-fix-v7.0-rc7&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#00afb1811fa638dacf125dd1c343b7a181624dfd</link>
        <description>Merge tag &apos;asoc-fix-v7.0-rc7&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.0A somewhat larger set of fixes than I&apos;d like unfortunatey, not from anyone place but rather spread out over different drivers.  We&apos;ve got abunch more fixes for the SDCA interrupt support, several relativelyminor SOF fixes, a few more driver specific fixes and a couple more AMDquirks.

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 09 Apr 2026 05:00:53 +0000</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>2c9e7a5f2e3f398213c0c122c18ffa2f4e192457 - Add Renesas RZ/G3L RSPI support</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#2c9e7a5f2e3f398213c0c122c18ffa2f4e192457</link>
        <description>Add Renesas RZ/G3L RSPI supportBiju &lt;biju.das.au@gmail.com&gt; says:This patch series adds binding and driver support for RSPI IP found on theRZ/G3L SoC. The RSPI is compatible with RZ/V2H RSPI, but has 2 clockscompared to 3 on RZ/V2H.Link: https://patch.msgid.link/20260408085418.18770-1-biju.das.jz@bp.renesas.com

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Wed, 08 Apr 2026 14:57:55 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>cc201899a972c9358639720404795d5a73acb1b4 - ASoC: Merge up v7.0-rc7</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#cc201899a972c9358639720404795d5a73acb1b4</link>
        <description>ASoC: Merge up v7.0-rc7Merge tag &apos;v7.0-rc7&apos; to get fixes that make my CI happier.

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Tue, 07 Apr 2026 14:43:29 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>322e4116ac8d48255f9599250347f48e56ce8979 - Merge v7.0-rc7 into drm-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#322e4116ac8d48255f9599250347f48e56ce8979</link>
        <description>Merge v7.0-rc7 into drm-nextThomas Zimmermann needs 2f42c1a61616 (&quot;drm/ast: dp501: Fixinitialization of SCU2C&quot;) for drm-misc-next.Conflicts:- drivers/gpu/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.cJust between e927b36ae18b (&quot;drm/amd/display: Fix NULL pointerdereference in dcn401_init_hw()&quot;) and it&apos;s cherry-pick that confusedgit.- drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.cDeleted in 6b0a6116286e (&quot;drm/amd/pm: Unify version check in SMUv11&quot;)but some cherry-picks confused git. Same for v12/v14.Signed-off-by: Simona Vetter &lt;simona.vetter@ffwll.ch&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Tue, 07 Apr 2026 10:27:36 +0000</pubDate>
        <dc:creator>Simona Vetter &lt;simona.vetter@ffwll.ch&gt;</dc:creator>
    </item>
<item>
        <title>3723393cc284e09107c0f55c47458b75b29be2c3 - Merge tag &apos;v7.0-rc7&apos; into usb-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#3723393cc284e09107c0f55c47458b75b29be2c3</link>
        <description>Merge tag &apos;v7.0-rc7&apos; into usb-nextWe need the USB fixes in here to build on and for testingSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Mon, 06 Apr 2026 07:06:39 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>a5210135489ae7bc1ef1cb4a8157361dd7b468cd - Merge tag &apos;v7.0-rc7&apos; into char-misc-next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#a5210135489ae7bc1ef1cb4a8157361dd7b468cd</link>
        <description>Merge tag &apos;v7.0-rc7&apos; into char-misc-nextWe need the char/misc/iio/comedi fixes in here as well for testingSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Mon, 06 Apr 2026 07:04:53 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ab5193e919bbc2577bf404983b2c0ee3c6d3ef83 - fs: remove unncessary pagevec.h includes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#ab5193e919bbc2577bf404983b2c0ee3c6d3ef83</link>
        <description>fs: remove unncessary pagevec.h includesRemove unused pagevec.h includes from .c files. These were found withthe following command:  grep -rl &apos;#include.*pagevec\.h&apos; --include=&apos;*.c&apos; | while read f; do  	grep -qE &apos;PAGEVEC_SIZE|folio_batch&apos; &quot;$f&quot; || echo &quot;$f&quot;  doneThere are probably more removal candidates in .h files, but those aremore complex to analyze.Link: https://lkml.kernel.org/r/20260225-pagevec_cleanup-v2-2-716868cc2d11@columbia.eduSigned-off-by: Tal Zussman &lt;tz2294@columbia.edu&gt;Reviewed-by: Jan Kara &lt;jack@suse.cz&gt;Acked-by: Zi Yan &lt;ziy@nvidia.com&gt;Acked-by: Chris Li &lt;chrisl@kernel.org&gt;Reviewed-by: Lorenzo Stoakes (Oracle) &lt;ljs@kernel.org&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: David Hildenbrand (Arm) &lt;david@kernel.org&gt;Cc: Matthew Wilcox (Oracle) &lt;willy@infradead.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Wed, 25 Feb 2026 23:44:26 +0000</pubDate>
        <dc:creator>Tal Zussman &lt;tz2294@columbia.edu&gt;</dc:creator>
    </item>
<item>
        <title>891a05ccba927050cee17eb90c74692fe083ddaf - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.0-rc6+</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#891a05ccba927050cee17eb90c74692fe083ddaf</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.0-rc6+Cross-merge BPF and other fixes after downstream PR.Minor conflict in kernel/bpf/verifier.cSigned-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Fri, 03 Apr 2026 15:12:58 +0000</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8ffb33d7709b59ff60560f48960a73bd8a55be95 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#8ffb33d7709b59ff60560f48960a73bd8a55be95</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-7.0-rc7).Conflicts:net/vmw_vsock/af_vsock.c  b18c83388874 (&quot;vsock: initialize child_ns_mode_locked in vsock_net_init()&quot;)  0de607dc4fd8 (&quot;vsock: add G2H fallback for CIDs not owned by H2G transport&quot;)Adjacent changes:drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c  ceee35e5674a (&quot;bnxt_en: Refactor some basic ring setup and adjustment logic&quot;)  57cdfe0dc70b (&quot;bnxt_en: Resize RSS contexts on channel count change&quot;)drivers/net/wireless/intel/iwlwifi/mld/mac80211.c  4d56037a02bd (&quot;wifi: iwlwifi: mld: block EMLSR during TDLS connections&quot;)  687a95d204e7 (&quot;wifi: iwlwifi: mld: correctly set wifi generation data&quot;)drivers/net/wireless/intel/iwlwifi/mld/scan.h  b6045c899e37 (&quot;wifi: iwlwifi: mld: Refactor scan command handling&quot;)  ec66ec6a5a8f (&quot;wifi: iwlwifi: mld: Fix MLO scan timing&quot;)drivers/net/wireless/intel/iwlwifi/mvm/fw.c  078df640ef05 (&quot;wifi: iwlwifi: mld: add support for iwl_mcc_allowed_ap_type_cmd v2&quot;)  323156c3541e (&quot;wifi: iwlwifi: mvm: don&apos;t send a 6E related command when not supported&quot;)Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 02 Apr 2026 17:57:09 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>dbf00d8d23b43a7a1d717e704c50651731d01d71 - Merge tag &apos;fs_for_v7.0-rc7&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#dbf00d8d23b43a7a1d717e704c50651731d01d71</link>
        <description>Merge tag &apos;fs_for_v7.0-rc7&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fsPull udf fix from Jan Kara: &quot;Fix for a race in UDF that can lead to memory corruption&quot;* tag &apos;fs_for_v7.0-rc7&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:  udf: Fix race between file type conversion and writeback  mpage: Provide variant of mpage_writepages() with own optional folio handler

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Tue, 31 Mar 2026 17:28:08 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>fffca572f9ca51607f180a37d0c898404c8f9112 - mpage: Provide variant of mpage_writepages() with own optional folio handler</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#fffca572f9ca51607f180a37d0c898404c8f9112</link>
        <description>mpage: Provide variant of mpage_writepages() with own optional folio handlerSome filesystems need to treat some folios specially (for example forinodes with inline data). Doing the handling in their .writepages methodin a race-free manner results in duplicating some of the writebackinternals. So provide generalized version of mpage_writepages() thatallows filesystem to provide a handler called for each folio which canhandle the folio in a special way.Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Link: https://patch.msgid.link/20260326140635.15895-3-jack@suse.czSigned-off-by: Jan Kara &lt;jack@suse.cz&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Thu, 26 Mar 2026 14:06:31 +0000</pubDate>
        <dc:creator>Jan Kara &lt;jack@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#a4a508df2aa34f8650afde54ea804321c618f45f</link>
        <description>Merge tag &apos;v6.18&apos; into nextSync up with the mainline to bring in the latest APIs.

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Sat, 13 Dec 2025 09:18:20 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2ace52718376fdb56aca863da2eebe70d7e2ddb1 - Merge branch &apos;objtool/core&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/fs/mpage.c#2ace52718376fdb56aca863da2eebe70d7e2ddb1</link>
        <description>Merge branch &apos;objtool/core&apos;Bring in the UDB and objtool data annotations to avoid conflicts while further extending the bug exceptions.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/fs/mpage.c</description>
        <pubDate>Fri, 21 Nov 2025 10:21:20 +0000</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
</channel>
</rss>
