<?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 .gitignore</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>36ae1c45b2cede43ab2fc679b450060bbf119f1b - Merge tag &apos;sched-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#36ae1c45b2cede43ab2fc679b450060bbf119f1b</link>
        <description>Merge tag &apos;sched-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipPull scheduler updates from Ingo Molnar: &quot;Scheduler Kconfig space updates:   - Further consolidate configurable preemption modes (Peter Zijlstra)     Reduce the number of architectures that are allowed to offer     PREEMPT_NONE and PREEMPT_VOLUNTARY, reducing the number of     preemption models from four to just two: &apos;full&apos; and &apos;lazy&apos; on     up-to-date architectures (arm64, loongarch, powerpc, riscv, s390,     x86).     None and voluntary are only available as legacy features on     platforms that don&apos;t implement lazy preemption yet, or which don&apos;t     even support preemption.     The goal is to eventually remove cond_resched() and voluntary     preemption altogether.  RSEQ based &apos;scheduler time slice extension&apos; support (Thomas Gleixner  and Peter Zijlstra):  This allows a thread to request a time slice extension when it enters  a critical section to avoid contention on a resource when the thread  is scheduled out inside of the critical section.   - Add fields and constants for time slice extension   - Provide static branch for time slice extensions   - Add statistics for time slice extensions   - Add prctl() to enable time slice extensions   - Implement sys_rseq_slice_yield()   - Implement syscall entry work for time slice extensions   - Implement time slice extension enforcement timer   - Reset slice extension when scheduled   - Implement rseq_grant_slice_extension()   - entry: Hook up rseq time slice extension   - selftests: Implement time slice extension test   - Allow registering RSEQ with slice extension   - Move slice_ext_nsec to debugfs   - Lower default slice extension   - selftests/rseq: Add rseq slice histogram script  Scheduler performance/scalability improvements:   - Update rq-&gt;avg_idle when a task is moved to an idle CPU, which     improves the scalability of various workloads (Shubhang Kaushik)   - Reorder fields in &apos;struct rq&apos; for better caching (Blake Jones)   - Fair scheduler SMP NOHZ balancing code speedups (Shrikanth Hegde):      - Move checking for nohz cpus after time check      - Change likelyhood of nohz.nr_cpus      - Remove nohz.nr_cpus and use weight of cpumask instead   - Avoid false sharing for sched_clock_irqtime (Wangyang Guo)   - Cleanups (Yury Norov):      - Drop useless cpumask_empty() in find_energy_efficient_cpu()      - Simplify task_numa_find_cpu()      - Use cpumask_weight_and() in sched_balance_find_dst_group()  DL scheduler updates:   - Add a deadline server for sched_ext tasks (by Andrea Righi and Joel     Fernandes, with fixes by Peter Zijlstra)  RT scheduler updates:   - Skip currently executing CPU in rto_next_cpu() (Chen Jinghuang)  Entry code updates and performance improvements (Jinjie Ruan)  This is part of the scheduler tree in this cycle due to inter-  dependencies with the RSEQ based time slice extension work:    - Remove unused syscall argument from syscall_trace_enter()    - Rework syscall_exit_to_user_mode_work() for architecture reuse    - Add arch_ptrace_report_syscall_entry/exit()    - Inline syscall_exit_work() and syscall_trace_enter()  Scheduler core updates (Peter Zijlstra):   - Rework sched_class::wakeup_preempt() and rq_modified_*()   - Avoid rq-&gt;lock bouncing in sched_balance_newidle()   - Rename rcu_dereference_check_sched_domain() =&gt;            rcu_dereference_sched_domain()   - &lt;linux/compiler_types.h&gt;: Add the __signed_scalar_typeof() helper  Fair scheduler updates/refactoring (Peter Zijlstra and Ingo Molnar):   - Fold the sched_avg update   - Change rcu_dereference_check_sched_domain() to rcu-sched   - Switch to rcu_dereference_all()   - Remove superfluous rcu_read_lock()   - Limit hrtick work   - Join two #ifdef CONFIG_FAIR_GROUP_SCHED blocks   - Clean up comments in &apos;struct cfs_rq&apos;   - Separate se-&gt;vlag from se-&gt;vprot   - Rename cfs_rq::avg_load to cfs_rq::sum_weight   - Rename cfs_rq::avg_vruntime to ::sum_w_vruntime &amp; helper functions   - Introduce and use the vruntime_cmp() and vruntime_op() wrappers for     wrapped-signed aritmetics   - Sort out &apos;blocked_load*&apos; namespace noise  Scheduler debugging code updates:   - Export hidden tracepoints to modules (Gabriele Monaco)   - Convert copy_from_user() + kstrtouint() to kstrtouint_from_user()     (Fushuai Wang)   - Add assertions to QUEUE_CLASS (Peter Zijlstra)   - hrtimer: Fix tracing oddity (Thomas Gleixner)  Misc fixes and cleanups:   - Re-evaluate scheduling when migrating queued tasks out of throttled     cgroups (Zicheng Qu)   - Remove task_struct-&gt;faults_disabled_mapping (Christoph Hellwig)   - Fix math notation errors in avg_vruntime comment (Zhan Xusheng)   - sched/cpufreq: Use %pe format for PTR_ERR() printing     (zenghongling)&quot;* tag &apos;sched-core-2026-02-09&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (64 commits)  sched: Re-evaluate scheduling when migrating queued tasks out of throttled cgroups  sched/cpufreq: Use %pe format for PTR_ERR() printing  sched/rt: Skip currently executing CPU in rto_next_cpu()  sched/clock: Avoid false sharing for sched_clock_irqtime  selftests/sched_ext: Add test for DL server total_bw consistency  selftests/sched_ext: Add test for sched_ext dl_server  sched/debug: Fix dl_server (re)start conditions  sched/debug: Add support to change sched_ext server params  sched_ext: Add a DL server for sched_ext tasks  sched/debug: Stop and start server based on if it was active  sched/debug: Fix updating of ppos on server write ops  sched/deadline: Clear the defer params  entry: Inline syscall_exit_work() and syscall_trace_enter()  entry: Add arch_ptrace_report_syscall_entry/exit()  entry: Rework syscall_exit_to_user_mode_work() for architecture reuse  entry: Remove unused syscall argument from syscall_trace_enter()  sched: remove task_struct-&gt;faults_disabled_mapping  sched: Update rq-&gt;avg_idle when a task is moved to an idle CPU  selftests/rseq: Add rseq slice histogram script  hrtimer: Fix trace oddity  ...

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Tue, 10 Feb 2026 21:50:10 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>830969e7821af377bdc1bb016929ff28c78490e8 - selftests/rseq: Implement time slice extension test</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#830969e7821af377bdc1bb016929ff28c78490e8</link>
        <description>selftests/rseq: Implement time slice extension testProvide an initial test case to evaluate the functionality. This needs to beextended to cover the ABI violations and expose the race condition betweenobserving granted and arriving in rseq_slice_yield().Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Link: https://patch.msgid.link/20251215155709.320325431@linutronix.de

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Mon, 15 Dec 2025 17:52:34 +0100</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#4f9786035f9e519db41375818e1d0b5f20da2f10</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.16 merge window.

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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>1260ed77798502de9c98020040d2995008de10cc - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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>2487b6b9bf2874cfca7efb59c95650c5b1d88d43 - Merge branch &apos;linus&apos; into x86/urgent, to pick up fixes and refresh the branch</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#2487b6b9bf2874cfca7efb59c95650c5b1d88d43</link>
        <description>Merge branch &apos;linus&apos; into x86/urgent, to pick up fixes and refresh the branchSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Tue, 25 Mar 2025 08:17:25 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>32b22538bea83bd48f00ab1403e5a4dbce41f0d0 - Merge tag &apos;sched-core-2025-03-22&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#32b22538bea83bd48f00ab1403e5a4dbce41f0d0</link>
        <description>Merge tag &apos;sched-core-2025-03-22&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipPull scheduler updates from Ingo Molnar: &quot;Core &amp; fair scheduler changes:   - Cancel the slice protection of the idle entity (Zihan Zhou)   - Reduce the default slice to avoid tasks getting an extra tick     (Zihan Zhou)   - Force propagating min_slice of cfs_rq when {en,de}queue tasks     (Tianchen Ding)   - Refactor can_migrate_task() to elimate looping (I Hsin Cheng)   - Add unlikey branch hints to several system calls (Colin Ian King)   - Optimize current_clr_polling() on certain architectures (Yujun     Dong)  Deadline scheduler: (Juri Lelli)   - Remove redundant dl_clear_root_domain call   - Move dl_rebuild_rd_accounting to cpuset.h  Uclamp:   - Use the uclamp_is_used() helper instead of open-coding it (Xuewen     Yan)   - Optimize sched_uclamp_used static key enabling (Xuewen Yan)  Scheduler topology support: (Juri Lelli)   - Ignore special tasks when rebuilding domains   - Add wrappers for sched_domains_mutex   - Generalize unique visiting of root domains   - Rebuild root domain accounting after every update   - Remove partition_and_rebuild_sched_domains   - Stop exposing partition_sched_domains_locked  RSEQ: (Michael Jeanson)   - Update kernel fields in lockstep with CONFIG_DEBUG_RSEQ=y   - Fix segfault on registration when rseq_cs is non-zero   - selftests: Add rseq syscall errors test   - selftests: Ensure the rseq ABI TLS is actually 1024 bytes  Membarriers:   - Fix redundant load of membarrier_state (Nysal Jan K.A.)  Scheduler debugging:   - Introduce and use preempt_model_str() (Sebastian Andrzej Siewior)   - Make CONFIG_SCHED_DEBUG unconditional (Ingo Molnar)  Fixes and cleanups:   - Always save/restore x86 TSC sched_clock() on suspend/resume     (Guilherme G. Piccoli)   - Misc fixes and cleanups (Thorsten Blum, Juri Lelli, Sebastian     Andrzej Siewior)&quot;* tag &apos;sched-core-2025-03-22&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (40 commits)  cpuidle, sched: Use smp_mb__after_atomic() in current_clr_polling()  sched/debug: Remove CONFIG_SCHED_DEBUG  sched/debug: Remove CONFIG_SCHED_DEBUG from self-test config files  sched/debug, Documentation: Remove (most) CONFIG_SCHED_DEBUG references from documentation  sched/debug: Make CONFIG_SCHED_DEBUG functionality unconditional  sched/debug: Make &apos;const_debug&apos; tunables unconditional __read_mostly  sched/debug: Change SCHED_WARN_ON() to WARN_ON_ONCE()  rseq/selftests: Fix namespace collision with rseq UAPI header  include/{topology,cpuset}: Move dl_rebuild_rd_accounting to cpuset.h  sched/topology: Stop exposing partition_sched_domains_locked  cgroup/cpuset: Remove partition_and_rebuild_sched_domains  sched/topology: Remove redundant dl_clear_root_domain call  sched/deadline: Rebuild root domain accounting after every update  sched/deadline: Generalize unique visiting of root domains  sched/topology: Wrappers for sched_domains_mutex  sched/deadline: Ignore special tasks when rebuilding domains  tracing: Use preempt_model_str()  xtensa: Rely on generic printing of preemption model  x86: Rely on generic printing of preemption model  s390: Rely on generic printing of preemption model  ...

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Tue, 25 Mar 2025 05:28:12 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>3c27b40830cad0917c92fecf0c9cb1ec41de17cc - selftests/rseq: Add rseq syscall errors test</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/rseq/.gitignore#3c27b40830cad0917c92fecf0c9cb1ec41de17cc</link>
        <description>selftests/rseq: Add rseq syscall errors testThis test adds coverage of expected errors during rseq registration andunregistration, it disables glibc integration and will thus alwaysexercise the rseq syscall explictly.Signed-off-by: Michael Jeanson &lt;mjeanson@efficios.com&gt;Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;Reviewed-by: Mathieu Desnoyers &lt;mathieu.desnoyers@efficios.com&gt;Cc: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Link: https://lore.kernel.org/r/20250121213402.1754762-1-mjeanson@efficios.com

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Tue, 21 Jan 2025 22:33:52 +0100</pubDate>
        <dc:creator>Michael Jeanson &lt;mjeanson@efficios.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/tools/testing/selftests/rseq/.gitignore#9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.4 merge window.

            List of files:
            /linux/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</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/tools/testing/selftests/rseq/.gitignore#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/tools/testing/selftests/rseq/.gitignore</description>
        <pubDate>Mon, 13 Mar 2023 10:14:05 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
</channel>
</rss>
