<?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 decodecode</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>440d6635b20037bc9ad46b20817d7b61cef0fc1b - Merge tag &apos;mm-nonmm-stable-2026-04-15-04-20&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#440d6635b20037bc9ad46b20817d7b61cef0fc1b</link>
        <description>Merge tag &apos;mm-nonmm-stable-2026-04-15-04-20&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull non-MM updates from Andrew Morton: - &quot;pid: make sub-init creation retryable&quot; (Oleg Nesterov)   Make creation of init in a new namespace more robust by clearing away   some historical cruft which is no longer needed. Also some   documentation fixups - &quot;selftests/fchmodat2: Error handling and general&quot; (Mark Brown)   Fix and a cleanup for the fchmodat2() syscall selftest - &quot;lib: polynomial: Move to math/ and clean up&quot; (Andy Shevchenko) - &quot;hung_task: Provide runtime reset interface for hung task detector&quot;   (Aaron Tomlin)   Give administrators the ability to zero out   /proc/sys/kernel/hung_task_detect_count - &quot;tools/getdelays: use the static UAPI headers from   tools/include/uapi&quot; (Thomas Wei&#223;schuh)   Teach getdelays to use the in-kernel UAPI headers rather than the   system-provided ones - &quot;watchdog/hardlockup: Improvements to hardlockup&quot; (Mayank Rungta)   Several cleanups and fixups to the hardlockup detector code and its   documentation - &quot;lib/bch: fix undefined behavior from signed left-shifts&quot; (Josh Law)   A couple of small/theoretical fixes in the bch code - &quot;ocfs2/dlm: fix two bugs in dlm_match_regions()&quot; (Junrui Luo) - &quot;cleanup the RAID5 XOR library&quot; (Christoph Hellwig)   A quite far-reaching cleanup to this code. I can&apos;t do better than to   quote Christoph:     &quot;The XOR library used for the RAID5 parity is a bit of a mess right      now. The main file sits in crypto/ despite not being cryptography      and not using the crypto API, with the generic implementations      sitting in include/asm-generic and the arch implementations      sitting in an asm/ header in theory. The latter doesn&apos;t work for      many cases, so architectures often build the code directly into      the core kernel, or create another module for the architecture      code.      Change this to a single module in lib/ that also contains the      architecture optimizations, similar to the library work Eric      Biggers has done for the CRC and crypto libraries later. After      that it changes to better calling conventions that allow for      smarter architecture implementations (although none is contained      here yet), and uses static_call to avoid indirection function call      overhead&quot; - &quot;lib/list_sort: Clean up list_sort() scheduling workarounds&quot;   (Kuan-Wei Chiu)   Clean up this library code by removing a hacky thing which was added   for UBIFS, which UBIFS doesn&apos;t actually need - &quot;Fix bugs in extract_iter_to_sg()&quot; (Christian Ehrhardt)   Fix a few bugs in the scatterlist code, add in-kernel tests for the   now-fixed bugs and fix a leak in the test itself - &quot;kdump: Enable LUKS-encrypted dump target support in ARM64 and   PowerPC&quot; (Coiby Xu)   Enable support of the LUKS-encrypted device dump target on arm64 and   powerpc - &quot;ocfs2: consolidate extent list validation into block read callbacks&quot;   (Joseph Qi)   Cleanup, simplify, and make more robust ocfs2&apos;s validation of extent   list fields (Kernel test robot loves mounting corrupted fs images!)* tag &apos;mm-nonmm-stable-2026-04-15-04-20&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (127 commits)  ocfs2: validate group add input before caching  ocfs2: validate bg_bits during freefrag scan  ocfs2: fix listxattr handling when the buffer is full  doc: watchdog: fix typos etc  update Sean&apos;s email address  ocfs2: use get_random_u32() where appropriate  ocfs2: split transactions in dio completion to avoid credit exhaustion  ocfs2: remove redundant l_next_free_rec check in __ocfs2_find_path()  ocfs2: validate extent block list fields during block read  ocfs2: remove empty extent list check in ocfs2_dx_dir_lookup_rec()  ocfs2: validate dx_root extent list fields during block read  ocfs2: fix use-after-free in ocfs2_fault() when VM_FAULT_RETRY  ocfs2: handle invalid dinode in ocfs2_group_extend  .get_maintainer.ignore: add Askar  ocfs2: validate bg_list extent bounds in discontig groups  checkpatch: exclude forward declarations of const structs  tools/accounting: handle truncated taskstats netlink messages  taskstats: set version in TGID exit notifications  ocfs2/heartbeat: fix slot mapping rollback leaks on error paths  arm64,ppc64le/kdump: pass dm-crypt keys to kdump kernel  ...

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Fri, 17 Apr 2026 05:11:56 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b8822d73d6fe0d43de3b98ccc995b7032993b1b7 - scripts/decodecode: return 0 on success</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#b8822d73d6fe0d43de3b98ccc995b7032993b1b7</link>
        <description>scripts/decodecode: return 0 on successThe decodecode script always returns an exit code of 1, regardless ofwhether the operation was successful or not.  This is because the&quot;cleanup&quot; function, which is registered to run on any script exit via&quot;trap cleanup EXIT&quot;, contains an unconditional &quot;exit 1&quot;.Remove the &quot;exit 1&quot; from the &quot;cleanup&quot; function so that it only performsthe necessary file cleanup without forcing a non-zero exit status.Do that to ensure successful script executions now exit with code 0. Exits due to errors are all handled by the &quot;die()&quot; function and will stillcorrectly exit with code 1.Link: https://lkml.kernel.org/r/20260318150545.2809311-1-derkling@google.comSigned-off-by: Patrick Bellasi &lt;derkling@google.com&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Wed, 18 Mar 2026 16:05:45 +0100</pubDate>
        <dc:creator>Patrick Bellasi &lt;derkling@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a23e1966932464e1c5226cb9ac4ce1d5fc10ba22 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#a23e1966932464e1c5226cb9ac4ce1d5fc10ba22</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.11 merge window.

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Mon, 15 Jul 2024 23:03:44 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6f47c7ae8c7afaf9ad291d39f0d3974f191a7946 - Merge tag &apos;v6.9&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#6f47c7ae8c7afaf9ad291d39f0d3974f191a7946</link>
        <description>Merge tag &apos;v6.9&apos; into nextSync up with the mainline to bring in the new cleanup API.

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Tue, 28 May 2024 06:37:18 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>60a2f25de7b8b785baee2932db932ae9a5b8c86d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#60a2f25de7b8b785baee2932db932ae9a5b8c86d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextSome display refactoring patches are needed in order to allow conflict-less merging.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Thu, 16 May 2024 09:33:01 +0200</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>06d07429858317ded2db7986113a9e0129cd599b - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#06d07429858317ded2db7986113a9e0129cd599b</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to get the drm_printer changes to drm-intel-next.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Thu, 29 Feb 2024 10:57:56 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>41c177cf354126a22443b5c80cec9fdd313e67e1 - Merge tag &apos;drm-misc-next-2024-02-08&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#41c177cf354126a22443b5c80cec9fdd313e67e1</link>
        <description>Merge tag &apos;drm-misc-next-2024-02-08&apos; into msm-nextMerge the drm-misc tree to uprev MSM CI.Signed-off-by: Rob Clark &lt;robdclark@chromium.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Sun, 11 Feb 2024 21:34:07 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>4db102dcb0396a4ccf89b1eac0f4eb3fd167a080 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#4db102dcb0396a4ccf89b1eac0f4eb3fd167a080</link>
        <description>Merge drm/drm-next into drm-misc-nextKickstart 6.9 development cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Mon, 29 Jan 2024 14:20:23 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>be3382ecdf317f005e7d47356d0a9256cc36dd88 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#be3382ecdf317f005e7d47356d0a9256cc36dd88</link>
        <description>Merge drm/drm-next into drm-xe-nextSync to v6.8-rc1.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Tue, 23 Jan 2024 00:10:10 +0100</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>03c11eb3b16dc0058589751dfd91f254be2be613 - Merge tag &apos;v6.8-rc4&apos; into x86/percpu, to resolve conflicts and refresh the branch</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#03c11eb3b16dc0058589751dfd91f254be2be613</link>
        <description>Merge tag &apos;v6.8-rc4&apos; into x86/percpu, to resolve conflicts and refresh the branchConflicts:	arch/x86/include/asm/percpu.h	arch/x86/include/asm/text-patching.hSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Wed, 14 Feb 2024 10:45:07 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>42ac0be18bfa09c03f52244f7c3e15c89b38532f - Merge branch &apos;linus&apos; into x86/mm, to refresh the branch and pick up fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#42ac0be18bfa09c03f52244f7c3e15c89b38532f</link>
        <description>Merge branch &apos;linus&apos; into x86/mm, to refresh the branch and pick up fixesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Fri, 26 Jan 2024 10:26:50 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>cf79f291f985662150363b4a93d16f88f12643bc - Merge v6.8-rc1 into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#cf79f291f985662150363b4a93d16f88f12643bc</link>
        <description>Merge v6.8-rc1 into drm-misc-fixesLet&apos;s kickstart the 6.8 fix cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Mon, 22 Jan 2024 09:44:15 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9f2a635235823cf016eb8af0aeb3c0b2b25cea64 - Merge tag &apos;mm-nonmm-stable-2024-01-09-10-33&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#9f2a635235823cf016eb8af0aeb3c0b2b25cea64</link>
        <description>Merge tag &apos;mm-nonmm-stable-2024-01-09-10-33&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull non-MM updates from Andrew Morton: &quot;Quite a lot of kexec work this time around. Many singleton patches in  many places. The notable patch series are:   - nilfs2 folio conversion from Matthew Wilcox in &apos;nilfs2: Folio     conversions for file paths&apos;.   - Additional nilfs2 folio conversion from Ryusuke Konishi in &apos;nilfs2:     Folio conversions for directory paths&apos;.   - IA64 remnant removal in Heiko Carstens&apos;s &apos;Remove unused code after     IA-64 removal&apos;.   - Arnd Bergmann has enabled the -Wmissing-prototypes warning     everywhere in &apos;Treewide: enable -Wmissing-prototypes&apos;. This had     some followup fixes:      - Nathan Chancellor has cleaned up the hexagon build in the series        &apos;hexagon: Fix up instances of -Wmissing-prototypes&apos;.      - Nathan also addressed some s390 warnings in &apos;s390: A couple of        fixes for -Wmissing-prototypes&apos;.      - Arnd Bergmann addresses the same warnings for MIPS in his series        &apos;mips: address -Wmissing-prototypes warnings&apos;.   - Baoquan He has made kexec_file operate in a top-down-fitting manner     similar to kexec_load in the series &apos;kexec_file: Load kernel at top     of system RAM if required&apos;   - Baoquan He has also added the self-explanatory &apos;kexec_file: print     out debugging message if required&apos;.   - Some checkstack maintenance work from Tiezhu Yang in the series     &apos;Modify some code about checkstack&apos;.   - Douglas Anderson has disentangled the watchdog code&apos;s logging when     multiple reports are occurring simultaneously. The series is     &apos;watchdog: Better handling of concurrent lockups&apos;.   - Yuntao Wang has contributed some maintenance work on the crash code     in &apos;crash: Some cleanups and fixes&apos;&quot;* tag &apos;mm-nonmm-stable-2024-01-09-10-33&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (157 commits)  crash_core: fix and simplify the logic of crash_exclude_mem_range()  x86/crash: use SZ_1M macro instead of hardcoded value  x86/crash: remove the unused image parameter from prepare_elf_headers()  kdump: remove redundant DEFAULT_CRASH_KERNEL_LOW_SIZE  scripts/decode_stacktrace.sh: strip unexpected CR from lines  watchdog: if panicking and we dumped everything, don&apos;t re-enable dumping  watchdog/hardlockup: use printk_cpu_sync_get_irqsave() to serialize reporting  watchdog/softlockup: use printk_cpu_sync_get_irqsave() to serialize reporting  watchdog/hardlockup: adopt softlockup logic avoiding double-dumps  kexec_core: fix the assignment to kimage-&gt;control_page  x86/kexec: fix incorrect end address passed to kernel_ident_mapping_init()  lib/trace_readwrite.c:: replace asm-generic/io with linux/io  nilfs2: cpfile: fix some kernel-doc warnings  stacktrace: fix kernel-doc typo  scripts/checkstack.pl: fix no space expression between sp and offset  x86/kexec: fix incorrect argument passed to kexec_dprintk()  x86/kexec: use pr_err() instead of kexec_dprintk() when an error occurs  nilfs2: add missing set_freezable() for freezable kthread  kernel: relay: remove relay_file_splice_read dead code, doesn&apos;t work  docs: submit-checklist: remove all of &quot;make namespacecheck&quot;  ...

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Tue, 09 Jan 2024 20:46:20 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d738bced865a1473ea9a5e54734def2d40052e0c - scripts/decodecode: add support for LoongArch</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#d738bced865a1473ea9a5e54734def2d40052e0c</link>
        <description>scripts/decodecode: add support for LoongArchAn example how to invoke decodecode for loongarch64:$ echo &apos;Code: 380839f6  380831f9  28412bae  &lt;24000ca6&gt;  004081ad  0014cb50  004083e8  02bff34c  58008e91&apos; | \  ARCH=loongarch CROSS_COMPILE=loongarch64-linux-gnu- \  ./scripts/decodecodeCode: 380839f6 380831f9 28412bae &lt;24000ca6&gt; 004081ad 0014cb50 004083e8 02bff34c 58008e91All code========   0:	380839f6 	ldx.w       	$fp, $t3, $t2   4:	380831f9 	ldx.w       	$s2, $t3, $t0   8:	28412bae 	ld.h        	$t2, $s6, 74(0x4a)   c:*	24000ca6 	ldptr.w     	$a2, $a1, 12(0xc)		&lt;-- trapping instruction  10:	004081ad 	slli.w      	$t1, $t1, 0x0  14:	0014cb50 	and         	$t4, $s3, $t6  18:	004083e8 	slli.w      	$a4, $s8, 0x0  1c:	02bff34c 	addi.w      	$t0, $s3, -4(0xffc)  20:	58008e91 	beq         	$t8, $t5, 140(0x8c)	# 0xacCode starting with the faulting instruction===========================================   0:	24000ca6 	ldptr.w     	$a2, $a1, 12(0xc)   4:	004081ad 	slli.w      	$t1, $t1, 0x0   8:	0014cb50 	and         	$t4, $s3, $t6   c:	004083e8 	slli.w      	$a4, $s8, 0x0  10:	02bff34c 	addi.w      	$t0, $s3, -4(0xffc)  14:	58008e91 	beq         	$t8, $t5, 140(0x8c)	# 0xa0Link: https://lkml.kernel.org/r/MW4PR84MB3145B99B9677BB7887BB26CD8192A@MW4PR84MB3145.NAMPRD84.PROD.OUTLOOK.COMSigned-off-by: Youling Tang &lt;tangyouling@kylinos.cn&gt;Acked-by: Huacai Chen &lt;chenhuacai@loongson.cn&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Sat, 16 Dec 2023 07:51:28 +0100</pubDate>
        <dc:creator>Youling Tang &lt;tangyouling@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.4 merge window.

            List of files:
            /linux/scripts/decodecode</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>cdc780f044a803aff8845b949f800f0f3d095d5f - Merge branch &apos;for-6.4/amd-sfh&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/scripts/decodecode#cdc780f044a803aff8845b949f800f0f3d095d5f</link>
        <description>Merge branch &apos;for-6.4/amd-sfh&apos; into for-linus- assorted functional fixes for amd-sfh driver (Basavaraj Natikar)

            List of files:
            /linux/scripts/decodecode</description>
        <pubDate>Wed, 26 Apr 2023 22:52:34 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&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/scripts/decodecode#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/scripts/decodecode</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/scripts/decodecode#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/scripts/decodecode</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/scripts/decodecode#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/scripts/decodecode</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/scripts/decodecode#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/scripts/decodecode</description>
        <pubDate>Fri, 17 Mar 2023 12:01:30 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
