<?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>67f8bc848ee31831336bd478e57d2f993551902e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#67f8bc848ee31831336bd478e57d2f993551902e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesLet&apos;s start the 7.3 drm-misc-fixes cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Tue, 01 Sep 2026 09:38:51 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>55ee4b931a7ffedc886175d265dd6e6d08fd4151 - Merge tag &apos;trace-rv-v7.3&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#55ee4b931a7ffedc886175d265dd6e6d08fd4151</link>
        <description>Merge tag &apos;trace-rv-v7.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-tracePull Real-time Verifier updates from Steven Rostedt: - Switch LTL and DOT parsers to Lark in code generation tool   The rvgen code generation tool originally parsed DOT files and LTL   specifications using custom string parsing and Ply, which is no   longer maintained. The DOT parser was fragile and prone to failure on   minor format variations. Both LTL and DOT parsers have been rewritten   to use the Lark parsing library. - Simplify Hybrid Automata clock variables   The clock variables in hybrid automata monitors now use a single   representation of the elapsed time since the clock was reset, rather   than converting between invariant and guard representations. This   allows simpler code generation for the newly refactored parser. - Generate cleanup hook for per-obj monitor   The code generation scripts now adds a cleanup function to per-obj   monitors for the user to wire to the appropriate event (e.g.   sched_process_exit for tasks). - Reduce read_lock scope during per-task cleanup   Take the tasklist_lock only when necessary, that is when iterating   over for_each_process_thread(). - Simplify task monitor slot management   Only rely on the slot array for per-task slot management to avoid   inconsistency with the unused counter. - Improve rvgen code robustness and templates   Use pathlib in rvgen and improve kernel path discovery. Also improve   consistency across templates when generating code (e.g. author   placeholder and monitor struct name). - Update rtapp sleep monitor   Simplify the sleep monitor by excluding kernel threads and updating   the nanosleep check to focus only on CLOCK_REALTIME. Also switch to   use the sched_exit tracepoint to run in the context of the offending   (wakee) task. - Add wakeup monitor   Add the new rtapp/wakeup monitor to detect when lower-priority tasks   wake up higher-priority ones, complementing the existing sleep   monitor by running in the waker context and capturing its stack   trace. - Fix tools/rv exit status on failure   Ensure the rv tool returns a failure exit code when a monitor fails   to start because it was already running. - Add automated selftests for tools/rv and rvgen   Introduced automated bash selftests to validate rv monitor listing   and execution under different configurations. Added tests for the   rvgen code generator, validating generated files against expected   output (golden). Tests are reachable via make check. - Add KUnit test coverage for verification monitors   Added comprehensive KUnit tests to validate the functionality of   deterministic, hybrid, and LTL monitors by emulating event sequences   and timing in a mock environment without affecting the running kernel   while expecting mock reactions to fire. Ensure real RV monitors   cannot run during KUnit tests to avoid state corruption. - Mock current in rv monitors   Mock the call to current in rv monitors when the KUnit tests are   built to allow them to run the test on dummy tasks. No overhead is   expected when KUnit tests aren&apos;t running. - Introduce rvgen kunit subcommand   Added a new &apos;kunit&apos; subcommand to rvgen to automatically patch an   already generated monitor with KUnit integration templates by parsing   its event handlers and creating the required mock structures and   initializations. - Refine kernel verification selftests   Added new selftests for the deadline and stall monitors and   rearranged the existing wwnr_printk test to resolve flakiness.   Additionally, fixed an issue in the selftests framework where   negative assertion failures were not correctly propagated due to   shell rules. - Fix 32-bit build of nomiss KUnit test   A previous commit introduced a division between an u64 and a constant   value and that doesn&apos;t build on 32-bit systems. Use div_u64()   instead. - Document changes in sleep monitor   The sleep monitor introduced some changes in the past like allowing   epoll_wait() as a valid sleep and a task going to runnable before   scheduling as a valid wakeup. Document both.* tag &apos;trace-rv-v7.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: (40 commits)  Documentation/rv: Explain epoll and aborted sleeps  rv: Fix 32-bit build of nomiss KUnit test  selftests/verification: Add selftests for deadline and stall monitors  selftests/verification: Rearrange the wwnr_printk test  selftests/verification: Fix wrong errexit assumption  rv: Add KUnit tests for some LTL monitors  rv: Add KUnit mock for current  rv: Add KUnit tests for some DA/HA monitors  rv: Export task monitor slot and react symbols  verification/rvgen: Add selftests for rvgen kunit  verification/rvgen: Add the rvgen kunit subcommand  verification/rvgen: Add selftests  verification/rvgen: Add golden and spec folders for tests  tools/rv: Add selftests  verification/rvgen: Improve consistency in template files  verification/rvgen: Use pathlib instead of os.path  verification/rvgen: Improve rv_dir discovery in RVGenerator  tools/rv: Fix exit status when monitor execution fails  rv: Use generic rv_this for the rv_monitor variable in LTL  rv/rtapp: Add wakeup monitor  ...

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Wed, 19 Aug 2026 22:29:22 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>cf8f191c06546dff223df12010d4a21f7b631ae3 - rv: Add KUnit mock for current</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#cf8f191c06546dff223df12010d4a21f7b631ae3</link>
        <description>rv: Add KUnit mock for currentSome monitors do not only rely on tracepoint arguments but also on thecurrently executing task.This makes it more challenging to mock events in KUnit.Define wrapper functions around current, the functionality is mockedonly during KUnit, an additional function call is avoided using a staticbranch unless any (even unrelated) KUnit test is running.Rely on a global mock_current variable that is set only by the RV KUnittests and cleared on teardown. Unrelated KUnit tests that happen totrigger RV handlers would see it null and use current.Reviewed-by: Nam Cao &lt;namcao@linutronix.de&gt;Reviewed-by: Wen Yang &lt;wen.yang@linux.dev&gt;Link: https://lore.kernel.org/r/20260723074534.43521-14-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Thu, 23 Jul 2026 09:45:30 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>8da2a88383658dac97769ed8f807ef6100a69480 - rv: Add KUnit tests for some DA/HA monitors</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#8da2a88383658dac97769ed8f807ef6100a69480</link>
        <description>rv: Add KUnit tests for some DA/HA monitorsValidate the functionality of DA monitors by injecting events in acontrolled environment (KUnit) and expecting reactions.Events handlers are exported directly from the monitor source fileswithout using system events and with dummy arguments (e.g. no realtasks). If the provided sequence of events incurs a violation, the testexpects the stub version of rv_react() to be called.This testing method can validate the entire monitor implementation sinceit sits between the monitor and the system (in place of thetracepoints). All sorts of system and timing events can be emulatedwithout affecting the running kernel.Handlers and monitor functions are exported as part of a struct tosimplify the process of running KUnit tests from kernel modules.Reviewed-by: Nam Cao &lt;namcao@linutronix.de&gt;Link: https://lore.kernel.org/r/20260723074534.43521-13-gmonaco@redhat.comSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Thu, 23 Jul 2026 09:45:29 +0200</pubDate>
        <dc:creator>Gabriele Monaco &lt;gmonaco@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>6fdaab4e163609772bcc617b052a62435e89d77c - rv/rtapp: Add wakeup monitor</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#6fdaab4e163609772bcc617b052a62435e89d77c</link>
        <description>rv/rtapp: Add wakeup monitorAdd a wakeup monitor to detect a lower-priority task waking up ahigher-priority task.The rtapp/sleep monitor already detects this. However, that monitortriggers an error in the context of the wakee task and user only getsthe stacktrace of that task. It is also extremely useful to get thestacktrace of the waker task, which this monitor offers. In otherwords, this monitor complements the rtapp/sleep monitor.Signed-off-by: Nam Cao &lt;namcao@linutronix.de&gt;Reviewed-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;Link: https://lore.kernel.org/r/ba5658fa13e49ada466b84a2c211f233037180b5.1781852967.git.namcao@linutronix.deSigned-off-by: Gabriele Monaco &lt;gmonaco@redhat.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Fri, 19 Jun 2026 09:21:22 +0200</pubDate>
        <dc:creator>Nam Cao &lt;namcao@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>7a0e692a0381254b2f77c54dec100cd3325a6fdf - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#7a0e692a0381254b2f77c54dec100cd3325a6fdf</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.2 merge window.

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Tue, 23 Jun 2026 08:10:08 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>fff88709f9a9153af85b5224b4594caa5387ca60 - Merge tag &apos;v7.1-rc6&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#fff88709f9a9153af85b5224b4594caa5387ca60</link>
        <description>Merge tag &apos;v7.1-rc6&apos; into nextSync up with mainline to pull in a fix to IMS PCU driver and otherenhancements.

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 01 Jun 2026 04:43:25 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5c8cbca290acdd49a694b36c0af76ba0c00bbf12 - Merge branch &apos;20260507-ubwc-rework-v4-4-c19593d20c1d@oss.qualcomm.com&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#5c8cbca290acdd49a694b36c0af76ba0c00bbf12</link>
        <description>Merge branch &apos;20260507-ubwc-rework-v4-4-c19593d20c1d@oss.qualcomm.com&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into HEADMerge the branch with the soc/qcom changes, required for the next UBWCpatches.Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Thu, 21 May 2026 22:36:50 +0200</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>09d6818d3bdc1ea6e49a425040528cbdbc97bc0a - Merge branch &apos;linus&apos; into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#09d6818d3bdc1ea6e49a425040528cbdbc97bc0a</link>
        <description>Merge branch &apos;linus&apos; into timers/clocksource... to bring it up to date for new changes.

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 18 May 2026 11:01:07 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>658a6021492ad3b1b8a6e9a83963a1fad35a2af8 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#658a6021492ad3b1b8a6e9a83963a1fad35a2af8</link>
        <description>Merge drm/drm-next into drm-intel-nextSome Display Port Adaptive Sync depends on drm work.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Fri, 15 May 2026 13:01:15 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8edf8b09fc44990977b3fbcb708035b1740d0b7e - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#8edf8b09fc44990977b3fbcb708035b1740d0b7e</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerging to pull in commit 5401b9adebc9 (&quot;i915: don&apos;t usea vma that didn&apos;t match the context VM&quot;) to revert it.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Tue, 12 May 2026 10:16:35 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c53ed3e99920df6a90553c89a1c053aa0776841e - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#c53ed3e99920df6a90553c89a1c053aa0776841e</link>
        <description>Merge drm/drm-next into drm-xe-nextBringing in recent display changes.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Fri, 08 May 2026 16:19:45 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cafac16b6207b88ad92fbba1169ae4f43865cb0d - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#cafac16b6207b88ad92fbba1169ae4f43865cb0d</link>
        <description>Merge drm/drm-next into drm-misc-nextGetting 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:49:13 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9c9fe04e0fe3fdba7d4aafffa9b7bbb21f6fcbe1 - Merge tag &apos;v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/trace/rv/Kconfig#9c9fe04e0fe3fdba7d4aafffa9b7bbb21f6fcbe1</link>
        <description>Merge tag &apos;v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-nextLinux 7.1-rc1

            List of files:
            /linux/kernel/trace/rv/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 09:39:48 +0200</pubDate>
        <dc:creator>Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;</dc:creator>
    </item>
<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>
</channel>
</rss>
