/linux/Documentation/trace/rv/ |
H A D | da_monitor_synthesis.rst | 8 The formal representation needs to be then *synthesized* into a *monitor* 10 *monitor* connects to the system via an *instrumentation* that converts 15 the *RV monitor* abstraction. The RV monitor includes a set of instances 16 of the monitor (per-cpu monitor, per-task monitor, and so on), the helper 17 functions that glue the monitor to the system reference model, and the 39 DA monitor synthesis 42 The synthesis of automata-based models into the Linux *RV monitor* abstraction 44 contains a set of macros that automatically generate the monitor's code. 51 a kernel monitor in C. 54 [1] into a per-cpu monitor with the following command:: [all …]
|
H A D | runtime-verification.rst | 26 A monitor is the central part of the runtime verification of a system. The 27 monitor stands in between the formal specification of the desired (or 31 *RV monitor* abstraction. A *RV monitor* includes a reference model of the 32 system, a set of instances of the monitor (per-cpu monitor, per-task monitor, 33 and so on), and the helper functions that glue the monitor to the system via 54 In addition to the verification and monitoring of the system, a monitor can 81 monitor process the traces generated by a system after the events, generally by 86 an *asynchronous* monitor has its execution detached from the system. Each type 87 of monitor has a set of advantages. For example, *offline* monitors can be 94 monitor's ability to process them in the same system, only the *offline* [all …]
|
H A D | da_monitor_instrumentation.rst | 4 The RV monitor file created by dot2k, with the name "$MODEL_NAME.c" 7 In the example of the wip.dot monitor created on [1], it will look like:: 10 * This is the instrumentation part of the monitor. 82 might or might not be in the initial state. The monitor cannot start 84 Otherwise, the monitor and the system could be out-of-sync. 120 These functions are called when the monitor is enabled and disabled, 125 *attach* and *detach* its monitor to the system. 169 The wip monitor is presented in::
|
/linux/kernel/trace/rv/ |
H A D | rv.c | 218 buff = mdef->monitor->enabled ? "1\n" : "0\n"; in monitor_enable_read_data() 230 if (mdef->monitor->enabled) { in __rv_disable_monitor() 231 mdef->monitor->enabled = 0; in __rv_disable_monitor() 232 mdef->monitor->disable(); in __rv_disable_monitor() 270 if (mdef->monitor->enabled) in rv_enable_monitor() 273 retval = mdef->monitor->enable(); in rv_enable_monitor() 276 mdef->monitor->enabled = 1; in rv_enable_monitor() 324 snprintf(buff, sizeof(buff), "%s\n", mdef->monitor->description); in monitor_desc_read_data() 342 const char *name = mdef->monitor->name; in create_monitor_dir() 380 seq_printf(m, "%s\n", mon_def->monitor->name); in monitors_show() [all …]
|
H A D | Kconfig | 32 bool "wip monitor" 34 Enable wip (wakeup in preemptive) sample monitor that illustrates 44 bool "wwnr monitor" 46 Enable wwnr (wakeup while not running) sample monitor, this is a 47 sample monitor that illustrates the usage of per-task monitor. 59 monitor can cause a reaction to the detection of an exception 61 tracing reactions, printing the monitor output via tracepoints,
|
/linux/net/bluetooth/ |
H A D | msft.c | 259 struct adv_monitor *monitor, in msft_le_monitor_advertisement_cb() argument 285 handle_data->mgmt_handle = monitor->handle; in msft_le_monitor_advertisement_cb() 291 monitor->state = ADV_MONITOR_STATE_OFFLOADED; in msft_le_monitor_advertisement_cb() 295 hci_free_adv_monitor(hdev, monitor); in msft_le_monitor_advertisement_cb() 368 struct adv_monitor *monitor, in msft_le_cancel_monitor_advertisement_cb() argument 389 handle_data = msft_find_handle_data(hdev, monitor->handle, true); in msft_le_cancel_monitor_advertisement_cb() 392 if (monitor->state == ADV_MONITOR_STATE_OFFLOADED) in msft_le_cancel_monitor_advertisement_cb() 393 monitor->state = ADV_MONITOR_STATE_REGISTERED; in msft_le_cancel_monitor_advertisement_cb() 399 hci_free_adv_monitor(hdev, monitor); in msft_le_cancel_monitor_advertisement_cb() 424 struct adv_monitor *monitor) in msft_remove_monitor_sync() argument [all …]
|
H A D | msft.h | 22 int msft_add_monitor_pattern(struct hci_dev *hdev, struct adv_monitor *monitor); 23 int msft_remove_monitor(struct hci_dev *hdev, struct adv_monitor *monitor); 45 struct adv_monitor *monitor) in msft_add_monitor_pattern() argument 51 struct adv_monitor *monitor) in msft_remove_monitor() argument
|
/linux/tools/verification/dot2/ |
H A D | dot2k | 28 monitor=dot2k(params.dot_file, params.monitor_type) 38 print("Writing the monitor into the directory %s" % monitor.name) 39 monitor.print_files() 41 print(" - Edit the %s/%s.c to add the instrumentation" % (monitor.name, monitor.name))
|
/linux/Documentation/tools/rv/ |
H A D | rv-mon-wip.rst | 7 Wakeup In Preemptive monitor 20 The wakeup in preemptive (**wip**) monitor is a sample per-cpu monitor that 23 See kernel documentation for further information about this monitor:
|
H A D | rv-mon.rst | 20 The **rv mon** command runs the monitor named *monitor_name*. Each monitor 37 Each monitor has its own set of options. See man **rv-mon**-*monitor_name* 38 for details about each specific monitor. Also, running **rv mon**
|
H A D | rv-mon-wwnr.rst | 7 Wakeup While Not Running monitor 20 The wakeup while not running (**wwnr**) is a per-task sample monitor. 22 See kernel documentation for further information about this monitor:
|
/linux/Documentation/arch/s390/ |
H A D | monreader.rst | 23 IUCV `*MONITOR` statement in its user entry. If the monitor DCSS to be used is 28 There are two options for being able to load the monitor DCSS (examples assume 29 that the monitor DCSS begins at 144 MB and ends at 152 MB). You can query the 30 location of the monitor DCSS with the Class E privileged CP command Q NSS MAP 68 to specify the name of the monitor DCSS. If the module is compiled into the 74 Performance Toolkit), the monitor DCSS is already defined and you have to use 76 of the monitor DCSS, if already defined, and the users connected to the 78 Refer to the "z/VM Performance" book (SC24-6109-00) on how to create a monitor 124 This loads the module with the default monitor DCSS (MONDCSS) and creates a 136 Reading from the device provides a 12 Byte monitor control element (MCE), [all …]
|
/linux/include/rv/ |
H A D | instrumentation.h | 16 #define rv_attach_trace_probe(monitor, tp, rv_handler) \ argument 20 "fail attaching " #monitor " " #tp "handler"); \ 26 #define rv_detach_trace_probe(monitor, tp, rv_handler) \ argument
|
/linux/tools/power/cpupower/ |
H A D | TODO | 7 RAM from HW on Intel SandyBridge -> another monitor? 8 - Add another c1e debug idle monitor 11 - Add cpu_start()/cpu_stop() callbacks for monitor 13 monitor to outside it. This can be given higher
|
H A D | cpupower-completion.sh | 71 monitor) COMPREPLY=($(compgen -W "$flags" -- "$cur")) ;; 89 monitor) _monitor ;; 123 monitor) _monitor ;;
|
/linux/Documentation/devicetree/bindings/sound/ |
H A D | cs35l35.txt | 107 The cs35l35 node can have a single "cirrus,monitor-signal-format" sub-node 113 -cirrus,monitor-signal-format : Sub-node for the Monitor Signaling Formatting 117 If not used, the defaults for the 6 monitor signals is used. 123 scale of the IMON monitor signal. 126 of the VMON monitor signal. 129 of the VPMON monitor signal. 132 of the VBSTMON monitor signal 135 of the VPBRSTAT monitor signal 138 of the ZEROFILL packet in the monitor signal 172 cirrus,monitor-signal-format {
|
/linux/drivers/perf/hisilicon/ |
H A D | Kconfig | 6 Support for HiSilicon SoC L3 Cache performance monitor, Hydra Home 7 Agent performance monitor and DDR Controller performance monitor.
|
/linux/tools/perf/ui/gtk/ |
H A D | browser.c | 20 int monitor; in perf_gtk__resize_window() local 26 monitor = gdk_screen_get_monitor_at_window(screen, window->window); in perf_gtk__resize_window() 28 gdk_screen_get_monitor_geometry(screen, monitor, &rect); in perf_gtk__resize_window()
|
/linux/tools/power/cpupower/po/ |
H A D | ka.po | 74 #: utils/idle_monitor/cpupower-monitor.c:66 77 "cpupower monitor: [-h] [ [-t] | [-l] | [-m <mon1>,[<mon2>] ] ] [-i " 80 "cpupower monitor: [-h] [ [-t] | [-l] | [-m <mon1>,[<mon2>] ] ] [-i " 83 #: utils/idle_monitor/cpupower-monitor.c:69 86 "cpupower monitor: [-v] [-h] [ [-t] | [-l] | [-m <mon1>,[<mon2>] ] ] [-i " 89 "cpupower monitor: [-v] [-h] [ [-t] | [-l] | [-m <mon1>,[<mon2>] ] ] [-i " 92 #: utils/idle_monitor/cpupower-monitor.c:71 97 #: utils/idle_monitor/cpupower-monitor.c:73 102 #: utils/idle_monitor/cpupower-monitor.c:74 108 #: utils/idle_monitor/cpupower-monitor.c:75 [all …]
|
/linux/drivers/perf/ |
H A D | Kconfig | 6 menu "Performance monitor support" 93 Say y if you want to use the legacy CPU performance monitor 103 Say y if you want to use the CPU performance monitor 151 Say y if you want to use the ARM performance monitor unit (PMU) 160 Provides support for performance monitor unit in ARM DynamIQ Shared 166 tristate "Freescale i.MX8 DDR perf monitor" 169 Provides support for the DDR performance monitor in i.MX8, which 174 tristate "Freescale i.MX9 DDR perf monitor" 177 Provides support for the DDR performance monitor in i.MX9, which 186 Provides support for the L2 cache performance monitor unit (PMU) [all …]
|
/linux/drivers/ufs/core/ |
H A D | ufs-sysfs.c | 585 return sysfs_emit(buf, "%d\n", hba->monitor.enabled); in monitor_enable_show() 600 if (value == hba->monitor.enabled) in monitor_enable_store() 604 memset(&hba->monitor, 0, sizeof(hba->monitor)); in monitor_enable_store() 606 hba->monitor.enabled = true; in monitor_enable_store() 607 hba->monitor.enabled_ts = ktime_get(); in monitor_enable_store() 620 return sysfs_emit(buf, "%lu\n", hba->monitor.chunk_size); in monitor_chunk_size_show() 635 if (!hba->monitor.enabled) in monitor_chunk_size_store() 636 hba->monitor.chunk_size = value; in monitor_chunk_size_store() 646 return sysfs_emit(buf, "%lu\n", hba->monitor.nr_sec_rw[READ]); in read_total_sectors_show() 655 ktime_to_us(hba->monitor.total_busy[READ])); in read_total_busy_show() [all …]
|
/linux/Documentation/hwmon/ |
H A D | ina2xx.rst | 82 The INA219 is a high-side current shunt and power monitor with an I2C 86 The INA220 is a high or low side current shunt and power monitor with an I2C 89 The INA226 is a current shunt and power monitor with an I2C interface. 93 with an I2C interface. The chips monitor both a shunt voltage drop and 96 INA260 is a high or low side current and power monitor with integrated shunt 99 The SY24655 is a high- and low-side current shunt and power monitor with an I2C
|
/linux/Documentation/admin-guide/ |
H A D | edid.rst | 15 - The graphics board does not recognize the monitor. 18 - The monitor sends no or bogus EDID data. 19 - A KVM sends its own EDID data instead of querying the connected monitor.
|
/linux/include/linux/ |
H A D | rv.h | 58 int rv_unregister_monitor(struct rv_monitor *monitor); 59 int rv_register_monitor(struct rv_monitor *monitor);
|
/linux/drivers/perf/amlogic/ |
H A D | Kconfig | 6 Provides support for the DDR performance monitor 9 supports multiple channels to monitor the memory
|