<?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 Kconfig</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/kernel/trace/rv/Kconfig#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/kernel/trace/rv/Kconfig</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>fdbfee9fc56e13a1307868829d438ad66ab308a4 - Merge tag &apos;trace-rv-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#fdbfee9fc56e13a1307868829d438ad66ab308a4</link>
        <description>Merge tag &apos;trace-rv-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-tracePull runtime verification updates from Steven Rostedt: - Refactor da_monitor header to share handlers across monitor types   No functional changes, only less code duplication. - Add Hybrid Automata model class   Add a new model class that extends deterministic automata by adding   constraints on transitions and states. Those constraints can take   into account wall-clock time and as such allow RV monitor to make   assertions on real time. Add documentation and code generation   scripts. - Add stall monitor as hybrid automaton example   Add a monitor that triggers a violation when a task is stalling as an   example of automaton working with real time variables. - Convert the opid monitor to a hybrid automaton   The opid monitor can be heavily simplified if written as a hybrid   automaton: instead of tracking preempt and interrupt enable/disable   events, it can just run constraints on the preemption/interrupt   states when events like wakeup and need_resched verify. - Add support for per-object monitors in DA/HA   Allow writing deterministic and hybrid automata monitors for generic   objects (e.g. any struct), by exploiting a hash table where objects   are saved. This allows to track more than just tasks in RV. For   instance it will be used to track deadline entities in deadline   monitors. - Add deadline tracepoints and move some deadline utilities   Prepare the ground for deadline monitors by defining events and   exporting helpers. - Add nomiss deadline monitor   Add first example of deadline monitor asserting all entities complete   before their deadline. - Improve rvgen error handling   Introduce AutomataError exception class and better handle expected   exceptions while showing a backtrace for unexpected ones. - Improve python code quality in rvgen   Refactor the rvgen generation scripts to align with python best   practices: use f-strings instead of %, use len() instead of   __len__(), remove semicolons, use context managers for file   operations, fix whitespace violations, extract magic strings into   constants, remove unused imports and methods. - Fix small bugs in rvgen   The generator scripts presented some corner case bugs: logical error   in validating what a correct dot file looks like, fix an isinstance()   check, enforce a dot file has an initial state, fix type annotations   and typos in comments. - rvgen refactoring   Refactor automata.py to use iterator-based parsing and handle   required arguments directly in argparse. - Allow epoll in rtapp-sleep monitor   The epoll_wait call is now rt-friendly so it should be allowed in the   sleep monitor as a valid sleep method.* tag &apos;trace-rv-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: (32 commits)  rv: Allow epoll in rtapp-sleep monitor  rv/rvgen: fix _fill_states() return type annotation  rv/rvgen: fix unbound loop variable warning  rv/rvgen: enforce presence of initial state  rv/rvgen: extract node marker string to class constant  rv/rvgen: fix isinstance check in Variable.expand()  rv/rvgen: make monitor arguments required in rvgen  rv/rvgen: remove unused __get_main_name method  rv/rvgen: remove unused sys import from dot2c  rv/rvgen: refactor automata.py to use iterator-based parsing  rv/rvgen: use class constant for init marker  rv/rvgen: fix DOT file validation logic error  rv/rvgen: fix PEP 8 whitespace violations  rv/rvgen: fix typos in automata and generator docstring and comments  rv/rvgen: use context managers for file operations  rv/rvgen: remove unnecessary semicolons  rv/rvgen: replace __len__() calls with len()  rv/rvgen: replace % string formatting with f-strings  rv/rvgen: remove bare except clauses in generator  rv/rvgen: introduce AutomataError exception class  ...

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Thu, 16 Apr 2026 02:15:18 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b133207deb72609ad4da40c4d50128a5e150677b - rv: Add nomiss deadline monitor</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#b133207deb72609ad4da40c4d50128a5e150677b</link>
        <description>rv: Add nomiss deadline monitorAdd the deadline monitors collection to validate the deadline scheduler,both for deadline tasks and servers.The currently implemented monitors are:* nomiss:    validate dl entities run to completion before their deadilineReviewed-by: Nam Cao &lt;namcao@linutronix.de&gt;Reviewed-by: Juri Lelli &lt;juri.lelli@redhat.com&gt;Link: https://lore.kernel.org/r/20260330111010.153663-13-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 30 Mar 2026 13:10:10 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>13578a087152b85e53b1fa11639c814cb427808a - rv: Add sample hybrid monitor stall</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#13578a087152b85e53b1fa11639c814cb427808a</link>
        <description>rv: Add sample hybrid monitor stallAdd a sample monitor to showcase hybrid/timed automata.The stall monitor identifies tasks stalled for longer than a thresholdand reacts when that happens.Reviewed-by: Nam Cao &lt;namcao@linutronix.de&gt;Link: https://lore.kernel.org/r/20260330111010.153663-7-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 30 Mar 2026 13:10:04 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>f5587d1b6ec938afb2f74fe399a68020d66923e4 - rv: Add Hybrid Automata monitor type</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#f5587d1b6ec938afb2f74fe399a68020d66923e4</link>
        <description>rv: Add Hybrid Automata monitor typeDeterministic automata define which events are allowed in every state,but cannot define more sophisticated constraint taking into account thesystem&apos;s environment (e.g. time or other states not producing events).Add the Hybrid Automata monitor type as an extension of Deterministicautomata where each state transition is validating a constraint on afinite number of environment variables.Hybrid automata can be used to implement timed automata, where theenvironment variables are clocks.Also implement the necessary functionality to handle clock constraints(ns or jiffy granularity) on state and events.Reviewed-by: Nam Cao &lt;namcao@linutronix.de&gt;Link: https://lore.kernel.org/r/20260330111010.153663-3-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 30 Mar 2026 13:10:00 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>cb9f145f638d7afa633632a9290d6ad06caeb8ee - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclark</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#cb9f145f638d7afa633632a9290d6ad06caeb8ee</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclarkBack-merge drm-next to get caught up.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Sat, 01 Nov 2025 13:47:30 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#f088104d837a991c65e51fa30bb4196169b3244d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerge in order to get the commit:  048832a3f400 (&quot;drm/i915: Refactor shmem_pwrite() to use kiocb and write_iter&quot;)To drm-intel-gt-next as there are followup fixes to be applied.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Tue, 16 Sep 2025 12:53:20 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad - Merge commit &apos;linus&apos; into core/bugs, to resolve conflicts</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad</link>
        <description>Merge commit &apos;linus&apos; into core/bugs, to resolve conflictsResolve conflicts with this commit that was developed in parallelduring the merge window: 8c8efa93db68 (&quot;x86/bug: Add ARCH_WARN_ASM macro for BUG/WARN asm code sharing with Rust&quot;) Conflicts:	arch/riscv/include/asm/bug.h	arch/x86/include/asm/bug.hSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Tue, 05 Aug 2025 11:15:34 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8b87f67b4c87452e21721887fa8dec1f4c6b2b7c - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#8b87f67b4c87452e21721887fa8dec1f4c6b2b7c</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.18 merge window.

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Wed, 08 Oct 2025 06:53:13 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4b051897df2375414587a245ecb9bb1a4d26b3b8 - Merge tag &apos;v6.17-rc2&apos; into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#4b051897df2375414587a245ecb9bb1a4d26b3b8</link>
        <description>Merge tag &apos;v6.17-rc2&apos; into HEADSync up with mainline to bring in changes to include/linux/sprintf.h

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Thu, 21 Aug 2025 20:46:49 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b4d90dbc4c1bc4bd3eb2d2989330af0eb95c98e8 - Merge drm/drm-next into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#b4d90dbc4c1bc4bd3eb2d2989330af0eb95c98e8</link>
        <description>Merge drm/drm-next into drm-misc-next-fixesBackmerging to drm-misc-next-fixes to get features and fixes fromv6.17-rc6.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 15 Sep 2025 10:23:28 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>702fdf3513b045f596f836d9a4b8672c76f11834 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#702fdf3513b045f596f836d9a4b8672c76f11834</link>
        <description>Merge drm/drm-next into drm-intel-nextCatching up with some display dependencies.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Wed, 10 Sep 2025 14:01:42 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ca994e8922f25f7fed2075098f185cf198109eaa - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#ca994e8922f25f7fed2075098f185cf198109eaa</link>
        <description>Merge drm/drm-next into drm-xe-nextBring v6.17-rc1 to propagate commits from other subsystems, particularlyPCI, which has some new functions needed for SR-IOV integration.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Tue, 12 Aug 2025 14:58:37 +0200</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>08c51f5bddc81c8c97c1eb11861b0dc009e5ccd8 - Merge drm/drm-next into drm-misc-n</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#08c51f5bddc81c8c97c1eb11861b0dc009e5ccd8</link>
        <description>Merge drm/drm-next into drm-misc-nUpdating drm-misc-next to the state of v6.17-rc1. Begins a new releasecycle.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 11 Aug 2025 14:37:45 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>8d2b0853add1d7534dc0794e3c8e0b9e8c4ec640 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#8d2b0853add1d7534dc0794e3c8e0b9e8c4ec640</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesUpdating drm-misc-fixes to the state of v6.17-rc1. Begins a new releasecycle.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 11 Aug 2025 16:49:06 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.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/kernel/trace/rv/Kconfig#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/kernel/trace/rv/Kconfig</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/kernel/trace/rv/Kconfig#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/kernel/trace/rv/Kconfig</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>4ff261e725d7376c12e745fdbe8a33cd6dbd5a83 - Merge tag &apos;trace-rv-6.17&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#4ff261e725d7376c12e745fdbe8a33cd6dbd5a83</link>
        <description>Merge tag &apos;trace-rv-6.17&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-tracePull runtime verification updates from Steven Rostedt: - Added Linear temporal logic monitors for RT application   Real-time applications may have design flaws causing them to have   unexpected latency. For example, the applications may raise page   faults, or may be blocked trying to take a mutex without priority   inheritance.   However, while attempting to implement DA monitors for these   real-time rules, deterministic automaton is found to be inappropriate   as the specification language. The automaton is complicated, hard to   understand, and error-prone.   For these cases, linear temporal logic is found to be more suitable.   The LTL is more concise and intuitive. - Make printk_deferred() public   The new monitors needed access to printk_deferred(). Make them   visible for the entire kernel. - Add a vpanic() to allow for va_list to be passed to panic. - Add rtapp container monitor.   A collection of monitors that check for common problems with   real-time applications that cause unexpected latency. - Add page fault tracepoints to risc-v   These tracepoints are necessary to for the RV monitor to run on   risc-v. - Fix the behaviour of the rv tool with -s and idle tasks. - Allow the rv tool to gracefully terminate with SIGTERM - Adjusts dot2c not to create lines over 100 columns - Properly order nested monitors in the RV Kconfig file - Return the registration error in all DA monitor instead of 0 - Update and add new sched collection monitors   Replace tss and sncid monitors with more complete sts:   Not only prove that switches occur in scheduling context and scheduling   needs interrupt disabled but also that each call to the scheduler   disables interrupts to (optionally) switch.   New monitor: nrp     Preemption requires need resched which is cleared by any switch     (includes a non optimal workaround for /nested/ preemptions)   New monitor: sssw     suspension requires setting the task to sleepable and, after the     switch occurs, the task requires a wakeup to come back to runnable   New monitor: opid      waking and need-resched operations occur with interrupts and      preemption disabled or in IRQ without explicitly disabling      preemption&quot;* tag &apos;trace-rv-6.17&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: (48 commits)  rv: Add opid per-cpu monitor  rv: Add nrp and sssw per-task monitors  rv: Replace tss and sncid monitors with more complete sts  sched: Adapt sched tracepoints for RV task model  rv: Retry when da monitor detects race conditions  rv: Adjust monitor dependencies  rv: Use strings in da monitors tracepoints  rv: Remove trailing whitespace from tracepoint string  rv: Add da_handle_start_run_event_ to per-task monitors  rv: Fix wrong type cast in reactors_show() and monitor_reactor_show()  rv: Fix wrong type cast in monitors_show()  rv: Remove struct rv_monitor::reacting  rv: Remove rv_reactor&apos;s reference counter  rv: Merge struct rv_reactor_def into struct rv_reactor  rv: Merge struct rv_monitor_def into struct rv_monitor  rv: Remove unused field in struct rv_monitor_def  rv: Return init error when registering monitors  verification/rvgen: Organise Kconfig entries for nested monitors  tools/dot2c: Fix generated files going over 100 column limit  tools/rv: Stop gracefully also on SIGTERM  ...

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Thu, 31 Jul 2025 01:23:12 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>614384533dfe99293a7ff1bce3d4389adadbb759 - rv: Add opid per-cpu monitor</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#614384533dfe99293a7ff1bce3d4389adadbb759</link>
        <description>rv: Add opid per-cpu monitorAdd a per-cpu monitor as part of the sched model:* opid: operations with preemption and irq disabled    Monitor to ensure wakeup and need_resched occur with irq and    preemption disabled or in irq handlers.Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Tomas Glozar &lt;tglozar@redhat.com&gt;Cc: Juri Lelli &lt;jlelli@redhat.com&gt;Cc: Clark Williams &lt;williams@redhat.com&gt;Cc: John Kacur &lt;jkacur@redhat.com&gt;Link: https://lore.kernel.org/20250728135022.255578-10-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;Acked-by: Nam Cao &lt;namcao@linutronix.de&gt;Tested-by: Nam Cao &lt;namcao@linutronix.de&gt;Signed-off-by: Steven Rostedt (Google) &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 28 Jul 2025 15:50:21 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>e8440a88e56bb3aa24c384eec6de8bef1184bed2 - rv: Add nrp and sssw per-task monitors</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#e8440a88e56bb3aa24c384eec6de8bef1184bed2</link>
        <description>rv: Add nrp and sssw per-task monitorsAdd 2 per-task monitors as part of the sched model:* nrp: need-resched preempts    Monitor to ensure preemption requires need resched.* sssw: set state sleep and wakeup    Monitor to ensure sched_set_state to sleepable leads to sleeping and    sleeping tasks require wakeup.Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Cc: Tomas Glozar &lt;tglozar@redhat.com&gt;Cc: Juri Lelli &lt;jlelli@redhat.com&gt;Cc: Clark Williams &lt;williams@redhat.com&gt;Cc: John Kacur &lt;jkacur@redhat.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Link: https://lore.kernel.org/20250728135022.255578-9-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;Acked-by: Nam Cao &lt;namcao@linutronix.de&gt;Tested-by: Nam Cao &lt;namcao@linutronix.de&gt;Signed-off-by: Steven Rostedt (Google) &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 28 Jul 2025 15:50:20 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
