aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tracepoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/tracepoint.h')
-rw-r--r--include/linux/tracepoint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
index 63064e9403f2..69648c54a326 100644
--- a/include/linux/tracepoint.h
+++ b/include/linux/tracepoint.h
@@ -40,14 +40,14 @@ struct tracepoint {
40 do { \ 40 do { \
41 void **it_func; \ 41 void **it_func; \
42 \ 42 \
43 rcu_read_lock_sched(); \ 43 rcu_read_lock_sched_notrace(); \
44 it_func = rcu_dereference((tp)->funcs); \ 44 it_func = rcu_dereference((tp)->funcs); \
45 if (it_func) { \ 45 if (it_func) { \
46 do { \ 46 do { \
47 ((void(*)(proto))(*it_func))(args); \ 47 ((void(*)(proto))(*it_func))(args); \
48 } while (*(++it_func)); \ 48 } while (*(++it_func)); \
49 } \ 49 } \
50 rcu_read_unlock_sched(); \ 50 rcu_read_unlock_sched_notrace(); \
51 } while (0) 51 } while (0)
52 52
53/* 53/*