|
@@ -49,13 +49,28 @@ static inline void exception_exit(enum ctx_state prev_ctx)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * ct_state() - return the current context tracking state if known
|
|
|
|
+ *
|
|
|
|
+ * Returns the current cpu's context tracking state if context tracking
|
|
|
|
+ * is enabled. If context tracking is disabled, returns
|
|
|
|
+ * CONTEXT_DISABLED. This should be used primarily for debugging.
|
|
|
|
+ */
|
|
|
|
+static inline enum ctx_state ct_state(void)
|
|
|
|
+{
|
|
|
|
+ return context_tracking_is_enabled() ?
|
|
|
|
+ this_cpu_read(context_tracking.state) : CONTEXT_DISABLED;
|
|
|
|
+}
|
|
#else
|
|
#else
|
|
static inline void user_enter(void) { }
|
|
static inline void user_enter(void) { }
|
|
static inline void user_exit(void) { }
|
|
static inline void user_exit(void) { }
|
|
static inline enum ctx_state exception_enter(void) { return 0; }
|
|
static inline enum ctx_state exception_enter(void) { return 0; }
|
|
static inline void exception_exit(enum ctx_state prev_ctx) { }
|
|
static inline void exception_exit(enum ctx_state prev_ctx) { }
|
|
|
|
+static inline enum ctx_state ct_state(void) { return CONTEXT_DISABLED; }
|
|
#endif /* !CONFIG_CONTEXT_TRACKING */
|
|
#endif /* !CONFIG_CONTEXT_TRACKING */
|
|
|
|
|
|
|
|
+#define CT_WARN_ON(cond) WARN_ON(context_tracking_is_enabled() && (cond))
|
|
|
|
|
|
#ifdef CONFIG_CONTEXT_TRACKING_FORCE
|
|
#ifdef CONFIG_CONTEXT_TRACKING_FORCE
|
|
extern void context_tracking_init(void);
|
|
extern void context_tracking_init(void);
|