From: rd.dunlab@gmail.com
To: linux-kbuild@vger.kernel.org
Cc: Randy Dunlap <rd.dunlab@gmail.com>,
Masahiro Yamada <yamada.masahiro@socionext.com>,
rdunlap@infradead.org
Subject: [PATCH 3/4] scripts: namespace.pl: add .o to nmexception file names and fix "acpica"
Date: Wed, 02 Oct 2019 20:13:15 -0700 [thread overview]
Message-ID: <20191003031312.374601455@gmail.com> (raw)
In-Reply-To: 20191003031312.157994411@gmail.com
[-- Attachment #1: scr-namespace-fix-excepts.patch --]
[-- Type: text/plain, Size: 2514 bytes --]
'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@gmail.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Randy Dunlap <rdunlap@infradead.org>
---
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 = (
next prev parent reply other threads:[~2019-10-03 3:18 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-03 3:13 [PATCH 0/4] scripts: update namespace.pl rd.dunlab
2019-10-03 3:13 ` [PATCH 1/4] scripts: namespace.pl: handle lib-ksyms.o as lib.a rd.dunlab
2019-10-23 5:22 ` Masahiro Yamada
2019-10-03 3:13 ` [PATCH 2/4] scripts: namespace.pl: add some x86 object files to nmexception rd.dunlab
2019-10-23 5:33 ` Masahiro Yamada
2019-10-03 3:13 ` rd.dunlab [this message]
2019-10-23 5:34 ` [PATCH 3/4] scripts: namespace.pl: add .o to nmexception file names and fix "acpica" Masahiro Yamada
2019-10-03 3:13 ` [PATCH 4/4] scripts: namespace.pl: add blank section separator line rd.dunlab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191003031312.374601455@gmail.com \
--to=rd.dunlab@gmail.com \
--cc=linux-kbuild@vger.kernel.org \
--cc=rdunlap@infradead.org \
--cc=yamada.masahiro@socionext.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).