aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/jump_label.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index 30c3c7708132..01d3b70fc98a 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -71,6 +71,7 @@ void jump_label_inc(struct jump_label_key *key)
71 atomic_inc(&key->enabled); 71 atomic_inc(&key->enabled);
72 jump_label_unlock(); 72 jump_label_unlock();
73} 73}
74EXPORT_SYMBOL_GPL(jump_label_inc);
74 75
75static void __jump_label_dec(struct jump_label_key *key, 76static void __jump_label_dec(struct jump_label_key *key,
76 unsigned long rate_limit, struct delayed_work *work) 77 unsigned long rate_limit, struct delayed_work *work)
@@ -86,6 +87,7 @@ static void __jump_label_dec(struct jump_label_key *key,
86 87
87 jump_label_unlock(); 88 jump_label_unlock();
88} 89}
90EXPORT_SYMBOL_GPL(jump_label_dec);
89 91
90static void jump_label_update_timeout(struct work_struct *work) 92static void jump_label_update_timeout(struct work_struct *work)
91{ 93{