aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2010-10-27 18:59:56 -0400
committerMichal Marek <mmarek@suse.cz>2010-10-27 18:59:56 -0400
commit9231d9e02a1f92b52bbb1e4474bfd1903835a993 (patch)
treed32efadfc100792e48c37d0db8ec7000e946412c /scripts
parent062c1825a5f6673746efe5f0a5ea3803b0c316a9 (diff)
Revert "namespace: add source file location exceptions"
This reverts commit 24a54f7974a616385b96cd939e004592e2cea484. Stephen Hemminger <shemminger@vyatta.com> writes: > That patch should not be included. It causes more problems than it > solves, since then there are duplicate file locations which causes > false duplicate symbol reports. Reported-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/namespace.pl24
1 files changed, 0 insertions, 24 deletions
diff --git a/scripts/namespace.pl b/scripts/namespace.pl
index fd2d946fae23..a71be6b7cdec 100755
--- a/scripts/namespace.pl
+++ b/scripts/namespace.pl
@@ -141,26 +141,6 @@ my %nameexception = (
141 'VDSO32_sigreturn' => 1, 141 'VDSO32_sigreturn' => 1,
142); 142);
143 143
144# Files with exceptions to source file location
145my %sourceloc = (
146 'net/dccp/dccp_probe.o' => 'probe',
147 'net/dccp/dccp_ipv4.o' => 'ipv4',
148 'net/dccp/dccp_ipv6.o' => 'ipv6',
149 'net/dccp/dccp_diag.o' => 'diag',
150 'drivers/char/hw_random/rng-core.o' => 'core',
151 'fs/fat/msdos.o' => 'namei_msdos',
152 'fs/fat/vfat.o' => 'namei_vfat',
153 'fs/nfs_common/nfs_acl.o' => 'nfsacl',
154 'sound/soundcore.o' => 'sound_core',
155 'drivers/md/dm-mirror.o' => 'dm-raid1',
156 'drivers/message/i2o/i2o_bus.o' => 'bus-osm',
157 'arch/x86/kvm/kvm-amd.o' => 'svm',
158 'arch/x86/kvm/kvm-intel.o' => 'vmx',
159 'arch/x86/crypto/twofish-x86_64.o' => 'twofish-x86_64-asm_64',
160 'arch/x86/crypto/aes-x86_64.o' => 'aes-x86_64-asm_64',
161 'arch/x86/crypto/aesni-intel.o' => 'aesni-intel_asm',
162 'arch/x86/crypto/salsa20-x86_64.o' => 'salsa20-x86_64-asm_64',
163);
164 144
165&find(\&linux_objects, '.'); # find the objects and do_nm on them 145&find(\&linux_objects, '.'); # find the objects and do_nm on them
166&list_multiply_defined(); 146&list_multiply_defined();
@@ -248,15 +228,11 @@ sub do_nm
248 return; 228 return;
249 } 229 }
250 ($source = $basename) =~ s/\.o$//; 230 ($source = $basename) =~ s/\.o$//;
251
252 $source = $sourceloc{$fullname} if ($sourceloc{$fullname});
253
254 if (-e "$source.c" || -e "$source.S") { 231 if (-e "$source.c" || -e "$source.S") {
255 $source = "$objtree$File::Find::dir/$source"; 232 $source = "$objtree$File::Find::dir/$source";
256 } else { 233 } else {
257 $source = "$srctree$File::Find::dir/$source"; 234 $source = "$srctree$File::Find::dir/$source";
258 } 235 }
259
260 if (! -e "$source.c" && ! -e "$source.S") { 236 if (! -e "$source.c" && ! -e "$source.S") {
261 # No obvious source, exclude the object if it is conglomerate 237 # No obvious source, exclude the object if it is conglomerate
262 open(my $objdumpdata, "$objdump $basename|") 238 open(my $objdumpdata, "$objdump $basename|")