Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1210458 > unrolled thread
| Started by | Kevin Hao <haokexin@gmail.com> |
|---|---|
| First post | 2015-08-20 14:20 +0200 |
| Last post | 2015-08-20 14:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 2/8] jump_label: make it possible for the archs to invoke jump_label_init() much earlier Kevin Hao <haokexin@gmail.com> - 2015-08-20 14:20 +0200
| From | Kevin Hao <haokexin@gmail.com> |
|---|---|
| Date | 2015-08-20 14:20 +0200 |
| Subject | [PATCH 2/8] jump_label: make it possible for the archs to invoke jump_label_init() much earlier |
| Message-ID | <pZwZ4-4Ab-19@gated-at.bofh.it> |
For some archs (such as powerpc) would want to invoke jump_label_init()
in a much earlier stage. So check static_key_initialized in order to
make sure this function run only once.
Signed-off-by: Kevin Hao <haokexin@gmail.com>
---
kernel/jump_label.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index df1a7fbe7cd5..fcae370f8794 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -205,6 +205,9 @@ void __init jump_label_init(void)
struct static_key *key = NULL;
struct jump_entry *iter;
+ if (static_key_initialized)
+ return;
+
jump_label_sort_entries(iter_start, iter_stop);
for (iter = iter_start; iter < iter_stop; iter++) {
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to top | Article view | linux.kernel
csiph-web