]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - kernel/module.c
module: Use binary search in lookup_symbol()
authorAlessio Igor Bogani <abogani@kernel.org>
Wed, 18 May 2011 20:35:59 +0000 (22:35 +0200)
committerRusty Russell <rusty@rustcorp.com.au>
Thu, 19 May 2011 07:25:27 +0000 (16:55 +0930)
commit9d63487f86115b1d3ef69670043bcf2b83c4d227
tree3833a5f467f0958eaeab9f86f207dca60868bb0d
parent403ed27846aa126ecf0b842b5b179c506b9d989c
module: Use binary search in lookup_symbol()

The function is_exported() with its helper function lookup_symbol() are used to
verify if a provided symbol is effectively exported by the kernel or by the
modules. Now that both have their symbols sorted we can replace a linear search
with a binary search which provide a considerably speed-up.

This work was supported by a hardware donation from the CE Linux Forum.

Signed-off-by: Alessio Igor Bogani <abogani@kernel.org>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
kernel/module.c