diff options
| author | Ozan Çaglayan <ozan@pardus.org.tr> | 2009-09-18 12:49:27 -0700 | 
|---|---|---|
| committer | Sam Ravnborg <sam@ravnborg.org> | 2009-09-20 12:27:43 +0200 | 
| commit | 82fa39552fd858468a5647fa58d14955ecd50eb4 (patch) | |
| tree | 92b29c2f4780dc5480a1125354415f8f3bfd4bf1 | |
| parent | f9d490ab374236a115440c771ecf0fb2890eb929 (diff) | |
| download | olio-linux-3.10-82fa39552fd858468a5647fa58d14955ecd50eb4.tar.xz olio-linux-3.10-82fa39552fd858468a5647fa58d14955ecd50eb4.zip  | |
markup_oops: use modinfo to avoid confusion with underscored module names
When EIP is at a module having an underscore in its name, the current code
fails to find it because the module filenames has '-' instead of '_'.  Use
modinfo for a better path finding.
Signed-off-by: Ozan Çaglayan <ozan@pardus.org.tr>
Acked-by: WANG Cong <xiyou.wangcong@gmail.com>
Cc: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
| -rw-r--r-- | scripts/markup_oops.pl | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/markup_oops.pl b/scripts/markup_oops.pl index 89774011965..5f0fcb712e2 100644 --- a/scripts/markup_oops.pl +++ b/scripts/markup_oops.pl @@ -184,10 +184,7 @@ if ($target eq "0") {  # if it's a module, we need to find the .ko file and calculate a load offset  if ($module ne "") { -	my $dir = dirname($filename); -	$dir = $dir . "/"; -	my $mod = $module . ".ko"; -	my $modulefile = `find $dir -name $mod | head -1`; +	my $modulefile = `modinfo $module | grep '^filename:' | awk '{ print \$2 }'`;  	chomp($modulefile);  	$filename = $modulefile;  	if ($filename eq "") {  |