Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1610843
| From | Zhou Chengming <zhouchengming1@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] livepatch: Reduce the time of finding module symbols |
| Date | 2017-03-28 15:20 +0200 |
| Message-ID | <tpZcu-88d-33@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
It's reported that the time of insmoding a klp.ko for one of our out-tree modules is too long. ~ time sudo insmod klp.ko real 0m23.799s user 0m0.036s sys 0m21.256s Then we found the reason: our out-tree module used a lot of static local variables, so klp.ko has a lot of relocation records which reference the module. Then for each such entry klp_find_object_symbol() is called to resolve it, but this function uses the interface kallsyms_on_each_symbol() even for finding module symbols, so will waste a lot of time on walking through vmlinux kallsyms table many times. This patch changes it to use module_kallsyms_on_each_symbol() for modules symbols. After we apply this patch, the sys time reduced dramatically. ~ time sudo insmod klp.ko real 0m1.007s user 0m0.032s sys 0m0.924s Signed-off-by: Zhou Chengming <zhouchengming1@huawei.com> --- kernel/livepatch/core.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index af46438..b4b8bb0 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -182,7 +182,10 @@ static int klp_find_object_symbol(const char *objname, const char *name, }; mutex_lock(&module_mutex); - kallsyms_on_each_symbol(klp_find_callback, &args); + if (objname) + module_kallsyms_on_each_symbol(klp_find_callback, &args); + else + kallsyms_on_each_symbol(klp_find_callback, &args); mutex_unlock(&module_mutex); /* -- 1.8.3.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2] livepatch: Reduce the time of finding module symbols Zhou Chengming <zhouchengming1@huawei.com> - 2017-03-28 15:20 +0200 Re: [PATCH v2] livepatch: Reduce the time of finding module symbols Josh Poimboeuf <jpoimboe@redhat.com> - 2017-03-29 17:10 +0200 Re: [PATCH v2] livepatch: Reduce the time of finding module symbols Jessica Yu <jeyu@redhat.com> - 2017-03-29 21:50 +0200 Re: [PATCH v2] livepatch: Reduce the time of finding module symbols Miroslav Benes <mbenes@suse.cz> - 2017-03-30 10:10 +0200 Re: [PATCH v2] livepatch: Reduce the time of finding module symbols Jiri Kosina <jikos@kernel.org> - 2017-03-30 10:50 +0200
csiph-web