#ifndef _ASM_TRACE_COMMON_H #define _ASM_TRACE_COMMON_H #ifdef CONFIG_TRACING DECLARE_STATIC_KEY_FALSE(trace_pagefault_key); #define trace_pagefault_enabled() \ static_branch_unlikely(&trace_pagefault_key) DECLARE_STATIC_KEY_FALSE(trace_resched_ipi_key); #define trace_resched_ipi_enabled() \ static_branch_unlikely(&trace_resched_ipi_key) #else static inline bool trace_pagefault_enabled(void) { return false; } static inline bool trace_resched_ipi_enabled(void) { return false; } #endif #endif
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
common.h | File | 504 B | 0644 |
|
exceptions.h | File | 1.39 KB | 0644 |
|
fpu.h | File | 2.08 KB | 0644 |
|
hyperv.h | File | 1.05 KB | 0644 |
|
irq_vectors.h | File | 9.18 KB | 0644 |
|
mpx.h | File | 2.9 KB | 0644 |
|