public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kallsyms: skip kernel symbols when lookup in module
@ 2010-01-07  6:43 Cheng Renquan
  2010-01-07 11:40 ` Michal Marek
  0 siblings, 1 reply; 2+ messages in thread
From: Cheng Renquan @ 2010-01-07  6:43 UTC (permalink / raw)
  To: Michal Marek; +Cc: linux-kbuild

kernel symbols lookup is expensive, when we know it's a lookup in module,
we can skip the heavy kernel symbols.

Signed-off-by: Cheng Renquan <crquan@gmail.com>
---
 kernel/kallsyms.c |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/kernel/kallsyms.c b/kernel/kallsyms.c
index 8e5288a..bb9fdc5 100644
--- a/kernel/kallsyms.c
+++ b/kernel/kallsyms.c
@@ -173,12 +173,16 @@ unsigned long kallsyms_lookup_name(const char *name)
 	unsigned long i;
 	unsigned int off;
 
-	for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
-		off = kallsyms_expand_symbol(off, namebuf);
+	/* if a colon ':' found, skip the heavy kernel symbols */
+	if (strchr(name, ':') == NULL) {
+		for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
+			off = kallsyms_expand_symbol(off, namebuf);
 
-		if (strcmp(namebuf, name) == 0)
-			return kallsyms_addresses[i];
+			if (strcmp(namebuf, name) == 0)
+				return kallsyms_addresses[i];
+		}
 	}
+
 	return module_kallsyms_lookup_name(name);
 }
 EXPORT_SYMBOL_GPL(kallsyms_lookup_name);
-- 
1.6.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-07 11:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-07  6:43 [PATCH] kallsyms: skip kernel symbols when lookup in module Cheng Renquan
2010-01-07 11:40 ` Michal Marek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox