Lines Matching full:noise
3 * OS Noise Tracer: computes the OS Noise suffered by a running thread.
313 u64 noise; /* noise */ member
314 u64 max_sample; /* max single noise sample */
440 seq_puts(s, " NOISE %% OF CPU NOISE +-----------------------------+\n"); in print_osnoise_headers()
464 seq_puts(s, " NOISE %% OF CPU NOISE +-----------------------------+\n"); in print_osnoise_headers()
506 entry->noise = sample->noise; in __trace_osnoise_sample()
874 * occurrence, compute the noise caused by the NMI, and to remove the noise
937 * Computes the duration of the IRQ noise, and trace it. Also discounts the
938 * interference from other sources of noise could be currently being accounted.
1068 * Computes the duration of the softirq noise, and trace it. Also discounts the
1069 * interference from other sources of noise could be currently being accounted.
1140 * thread_entry - Record the starting of a thread noise window
1163 * thread_exit - Report the end of a thread noise window
1165 * It computes the total noise from a thread, tracing if needed.
1262 * used to record the beginning and to report the end of a thread noise window.
1281 * hook_thread_events - Hook the instrumentation for thread noise
1283 * Hook the osnoise tracer callbacks to handle the noise from other
1306 * unhook_thread_events - unhook the instrumentation for thread noise
1308 * Unook the osnoise tracer callbacks to handle the noise from other
1420 s64 noise = 0, max_noise = 0; in run_osnoise() local
1489 noise = time_sub(sample, last_sample); in run_osnoise()
1494 if (noise < 0) { in run_osnoise()
1495 osnoise_taint("negative noise!"); in run_osnoise()
1514 if (noise >= threshold) { in run_osnoise()
1517 if (noise > max_noise) in run_osnoise()
1518 max_noise = noise; in run_osnoise()
1523 sum_noise += noise; in run_osnoise()
1525 trace_sample_threshold(last_sample, noise, interference); in run_osnoise()
1528 if (noise > stop_in) in run_osnoise()
1535 * This will eventually cause unwarranted noise as PREEMPT_RCU in run_osnoise()
1590 * Save noise info. in run_osnoise()
1592 s.noise = time_to_us(sum_noise); in run_osnoise()
1605 if (s.noise > osnoise_data.stop_tracing_total) in run_osnoise()