Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932509AbdC2Tkt (ORCPT ); Wed, 29 Mar 2017 15:40:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33754 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932347AbdC2Tks (ORCPT ); Wed, 29 Mar 2017 15:40:48 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 1782B437F77 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jeyu@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 1782B437F77 Date: Wed, 29 Mar 2017 12:40:41 -0700 From: Jessica Yu To: Zhou Chengming Cc: live-patching@vger.kernel.org, linux-kernel@vger.kernel.org, jpoimboe@redhat.com, jikos@kernel.org, mbenes@suse.cz, pmladek@suse.com, huawei.libin@huawei.com Subject: Re: [PATCH v2] livepatch: Reduce the time of finding module symbols Message-ID: <20170329194041.7kqbgwculigwiq3d@jeyu> References: <1490706635-45752-1-git-send-email-zhouchengming1@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <1490706635-45752-1-git-send-email-zhouchengming1@huawei.com> X-OS: Linux jeyu 4.8.12-100.fc23.x86_64 x86_64 User-Agent: NeoMutt/20161126 (1.7.1) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Wed, 29 Mar 2017 19:40:42 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1862 Lines: 57 +++ Zhou Chengming [28/03/17 21:10 +0800]: >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 Limiting the search space for symbol lookups is a valid improvement, so: Acked-by: Jessica Yu >--- > 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 > >-- >To unsubscribe from this list: send the line "unsubscribe live-patching" in >the body of a message to majordomo@vger.kernel.org >More majordomo info at http://vger.kernel.org/majordomo-info.html