From: "Randy.Dunlap" <rddunlap@osdl.org>
To: Keith Owens <kaos@ocs.com.au>
Cc: Andrew Morton <akpm@osdl.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
davej@redhat.com, torvalds@osdl.org,
linux-kernel@vger.kernel.org
Subject: [PATCH] __init dependencies: ignore __param
Date: Wed, 20 Oct 2004 09:08:00 -0700 [thread overview]
Message-ID: <41768D60.3090305@osdl.org> (raw)
In-Reply-To: <24112.1097561162@kao2.melbourne.sgi.com>
[-- Attachment #1: Type: text/plain, Size: 1264 bytes --]
Keith Owens wrote:
>
>
> They may only be OK because the code is never run more than once.
> Normal code that refers to data.*init and is run more than once is a
> bug just waiting to bite you.
>
> Andrew - small fix for reference_init.pl, against 2.6.9-rc4.
>
> ------------------------------------------------------------
>
> Treat .pci_fixup entries the same as .init code/data.
>
> Signed off by: Keith Owens <kaos@ocs.com.au>
>
> Index: linux/scripts/reference_init.pl
> ===================================================================
> --- linux.orig/scripts/reference_init.pl Sat Aug 14 15:37:37 2004
> +++ linux/scripts/reference_init.pl Tue Oct 12 15:59:39 2004
> @@ -93,6 +93,8 @@ foreach $object (sort(keys(%object))) {
> $from !~ /\.stab$/ &&
> $from !~ /\.rodata$/ &&
> $from !~ /\.text\.lock$/ &&
> + $from !~ /\.pci_fixup_header$/ &&
> + $from !~ /\.pci_fixup_final$/ &&
> $from !~ /\.debug_/)) {
> printf("Error: %s %s refers to %s\n", $object, $from, $line);
> }
Keith,
It looks like __param section references can also be safely
ignored by 'reference_init.pl', since they are not discarded AFAIK.
Or am I wrong about that one?
Patch attached -- applies on top of yours.
--
~Randy
[-- Attachment #2: refer_param.patch --]
[-- Type: text/x-patch, Size: 1084 bytes --]
Ignore __param section references; they aren't discarded.
Error: ./drivers/mtd/devices/phram.o __param refers to 0000000000000010 R_X86_64_64 .init.text+0x0000000000000013
Error: ./drivers/scsi/dc395x.o __param refers to 0000000000000020 R_X86_64_64 .init.data+0x0000000000000064
Error: ./drivers/usb/gadget/ether.o __param refers to 0000000000000048 R_X86_64_64 .init.data+0x0000000000000020
Signed-off-by: Randy Dunlap <rddunlap@osdl.org>
diffstat:=
scripts/reference_init.pl | 1 +
1 files changed, 1 insertion(+)
diff -Naurp ./scripts/reference_init.pl~refer_param ./scripts/reference_init.pl
--- ./scripts/reference_init.pl~refer_param 2004-10-20 08:39:44.976489696 -0700
+++ ./scripts/reference_init.pl 2004-10-20 08:45:26.217613160 -0700
@@ -95,6 +95,7 @@ foreach $object (sort(keys(%object))) {
$from !~ /\.text\.lock$/ &&
$from !~ /\.pci_fixup_header$/ &&
$from !~ /\.pci_fixup_final$/ &&
+ $from !~ /\__param$/ &&
$from !~ /\.debug_/)) {
printf("Error: %s %s refers to %s\n", $object, $from, $line);
}
prev parent reply other threads:[~2004-10-20 16:29 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-10 22:57 [PATCH] find_isa_irq_pin can't be __init Dave Jones
2004-10-11 11:33 ` __init dependencies (was: Re: [PATCH] find_isa_irq_pin can't be )__init Geert Uytterhoeven
2004-10-11 19:12 ` Andrew Morton
2004-10-11 19:16 ` Dave Jones
2004-10-11 19:17 ` __init dependencies Randy.Dunlap
2004-10-12 4:04 ` Randy.Dunlap
2004-10-12 4:19 ` Andrew Morton
2004-10-12 6:06 ` Keith Owens
2004-10-20 16:08 ` Randy.Dunlap [this message]
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=41768D60.3090305@osdl.org \
--to=rddunlap@osdl.org \
--cc=akpm@osdl.org \
--cc=davej@redhat.com \
--cc=geert@linux-m68k.org \
--cc=kaos@ocs.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/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