'nm' exceptions are checked against $fullname, which includes the trailing '.o', so the list of file names should include the trailing '.o'. Also, the sub-directory for drivers/acpi/acpica/ has a typo, so s/acpia/acpica/g. The acpica list of exceptions almost surely needs to be updated. Signed-off-by: Randy Dunlap <rd.dunlab@xxxxxxxxx> Cc: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> --- patch 3/4: scripts/namespace.pl | 42 ++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) --- linux-next-20191002.orig/scripts/namespace.pl +++ linux-next-20191002/scripts/namespace.pl @@ -86,29 +86,29 @@ my %ref = (); # $ref{$name} exists if t my %export = (); # $export{$name} exists if there is an EXPORT_... of $name my %nmexception = ( - 'fs/ext3/bitmap' => 1, - 'fs/ext4/bitmap' => 1, - 'arch/x86/lib/thunk_32' => 1, - 'arch/x86/lib/cmpxchg' => 1, - 'arch/x86/vdso/vdso32/note' => 1, + 'fs/ext3/bitmap.o' => 1, + 'fs/ext4/bitmap.o' => 1, + 'arch/x86/lib/thunk_32.o' => 1, + 'arch/x86/lib/cmpxchg.o' => 1, + 'arch/x86/vdso/vdso32/note.o' => 1, 'arch/x86/entry/vdso/vdso-note.o' => 1, 'arch/x86/entry/vdso/vdso32/note.o' => 1, - 'lib/irq_regs' => 1, - 'usr/initramfs_data' => 1, - 'drivers/scsi/aic94xx/aic94xx_dump' => 1, - 'drivers/scsi/libsas/sas_dump' => 1, - 'lib/dec_and_lock' => 1, - 'drivers/ide/ide-probe-mini' => 1, - 'usr/initramfs_data' => 1, - 'drivers/acpi/acpia/exdump' => 1, - 'drivers/acpi/acpia/rsdump' => 1, - 'drivers/acpi/acpia/nsdumpdv' => 1, - 'drivers/acpi/acpia/nsdump' => 1, - 'arch/ia64/sn/kernel/sn2/io' => 1, - 'arch/ia64/kernel/gate-data' => 1, - 'security/capability' => 1, - 'fs/ntfs/sysctl' => 1, - 'fs/jfs/jfs_debug' => 1, + 'lib/irq_regs.o' => 1, + 'usr/initramfs_data.o' => 1, + 'drivers/scsi/aic94xx/aic94xx_dump.o' => 1, + 'drivers/scsi/libsas/sas_dump.o' => 1, + 'lib/dec_and_lock.o' => 1, + 'drivers/ide/ide-probe-mini.o' => 1, + 'usr/initramfs_data.o' => 1, + 'drivers/acpi/acpica/exdump.o' => 1, + 'drivers/acpi/acpica/rsdump.o' => 1, + 'drivers/acpi/acpica/nsdumpdv.o' => 1, + 'drivers/acpi/acpica/nsdump.o' => 1, + 'arch/ia64/sn/kernel/sn2/io.o' => 1, + 'arch/ia64/kernel/gate-data.o' => 1, + 'security/capability.o' => 1, + 'fs/ntfs/sysctl.o' => 1, + 'fs/jfs/jfs_debug.o' => 1, ); my %nameexception = (