From: Sam Ravnborg <sam@ravnborg.org>
To: Hirokazu Takata <takata@linux-m32r.org>
Cc: akpm@osdl.org, zwane@linuxpower.ca, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2.6.9-rc1-mm3] [m32r] Change from EXPORT_SYMBOL_NOVERS to EXPORT_SYMBOL
Date: Mon, 6 Sep 2004 15:11:06 +0200 [thread overview]
Message-ID: <20040906131106.GA8202@mars.ravnborg.org> (raw)
In-Reply-To: <20040906.215512.861025296.takata.hirokazu@renesas.com>
On Mon, Sep 06, 2004 at 09:55:12PM +0900, Hirokazu Takata wrote:
> Hi,
>
> From: Zwane Mwaikambo <zwane@linuxpower.ca>
> Subject: Re: 2.6.9-rc1-mm3
> Date: Fri, 3 Sep 2004 08:48:27 -0400 (EDT)
> > Just a few comments.
> Thank you.
>
> > - There appears to be yet another smc 91C111 driver in there, Takata,
> > there should be a unified one in drivers/net/smc91x.c.
> Yes. I would like to use drivers/net/smc91x.c. Now investigating it...
>
> > - arch/m32r/Kconfig could do with some trimming.
> Yes. I am going to clean up it.
>
> > - arch/m32r/kernel/irq.c shows that we really could do with that irq
> > consolidation.
> I see. Some i386 code and comments are remained in there.
>
> > - arch/m32r/kernel/m32r_ksyms, EXPORT_SYMBOL_NOVERS is deprecated, use
> > EXPORT_SYMBOL.
> Here is a patch for that.
>
> Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
>
>
> diff -rup linux-2.6.9-rc1-mm3.orig/arch/m32r/kernel/m32r_ksyms.c linux-2.6.9-rc1-mm3/arch/m32r/kernel/m32r_ksyms.c
> --- linux-2.6.9-rc1-mm3.orig/arch/m32r/kernel/m32r_ksyms.c 2004-09-03 20:46:13.000000000 +0900
> +++ linux-2.6.9-rc1-mm3/arch/m32r/kernel/m32r_ksyms.c 2004-09-06 17:12:18.000000000 +0900
> @@ -48,9 +48,9 @@ EXPORT_SYMBOL(__udelay);
> EXPORT_SYMBOL(__delay);
> EXPORT_SYMBOL(__const_udelay);
>
> -EXPORT_SYMBOL_NOVERS(__get_user_1);
> -EXPORT_SYMBOL_NOVERS(__get_user_2);
> -EXPORT_SYMBOL_NOVERS(__get_user_4);
> +EXPORT_SYMBOL(__get_user_1);
> +EXPORT_SYMBOL(__get_user_2);
> +EXPORT_SYMBOL(__get_user_4);
......
The convention these days is to put the EXPORT right uder the funtion definition
when appropriate.
So something like:
int foo(int l)
{
...
}
EXPORT_SYMBOL(foo);
No one just took their time to get rid of the rest of the *ksyms files.
Sam
next prev parent reply other threads:[~2004-09-06 13:11 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-09-03 8:48 2.6.9-rc1-mm3 Andrew Morton
2004-09-03 7:43 ` [PATCH] 2.6.9-rc1-mm3 i8042 compilation Bernhard Rosenkraenzer
2004-09-03 9:47 ` Andrew Morton
2004-09-03 9:20 ` 2.6.9-rc1-mm3 Russell King
2004-09-03 9:42 ` 2.6.9-rc1-mm3 Christoph Hellwig
2004-09-03 12:15 ` 2.6.9-rc1-mm3 Zwane Mwaikambo
2004-09-03 12:25 ` 2.6.9-rc1-mm3 Christoph Hellwig
2004-09-03 12:48 ` 2.6.9-rc1-mm3 Zwane Mwaikambo
2004-09-06 12:55 ` [PATCH 2.6.9-rc1-mm3] [m32r] Change from EXPORT_SYMBOL_NOVERS to EXPORT_SYMBOL Hirokazu Takata
2004-09-06 13:11 ` Sam Ravnborg [this message]
2004-09-06 13:55 ` Russell King
2004-09-06 13:52 ` EXPORT_SYMBOL_NOVERS (was: Re: 2.6.9-rc1-mm3) Geert Uytterhoeven
2004-09-06 15:30 ` Zwane Mwaikambo
2004-09-06 19:09 ` [PATCH 0/4] " Geert Uytterhoeven
2004-09-08 14:18 ` Zwane Mwaikambo
2004-09-06 19:09 ` [PATCH 1/4] " Geert Uytterhoeven
2004-09-06 19:09 ` [PATCH 2/4] " Geert Uytterhoeven
2004-09-06 19:10 ` [PATCH 3/4] " Geert Uytterhoeven
2004-09-06 19:10 ` [PATCH 4/4] " Geert Uytterhoeven
2004-09-03 9:54 ` 2.6.9-rc1-mm3 Christoph Hellwig
2004-09-06 12:40 ` [PATCH 2.6.9-rc1-mm3] [m32r] Modify sys_ipc() to remove useless iBCS2 support code Hirokazu Takata
2004-09-06 17:03 ` Christoph Hellwig
2004-09-06 21:02 ` Andrew Morton
2004-09-06 21:08 ` Christoph Hellwig
2004-09-07 8:02 ` Arnd Bergmann
2004-09-03 9:57 ` 2.6.9-rc1-mm3 Christoph Hellwig
2004-09-03 11:08 ` 2.6.9-rc1-mm3 Hirokazu Takata
2004-09-03 12:08 ` 2.6.9-rc1-mm3 Zwane Mwaikambo
2004-09-03 15:15 ` 2.6.9-rc1-mm3 Norberto Bensa
2004-09-03 16:27 ` 2.6.9-rc1-mm3 Andrew Morton
2004-09-03 17:20 ` 2.6.9-rc1-mm3 Norberto Bensa
2004-09-05 19:59 ` 2.6.9-rc1-mm3 Norberto Bensa
2004-09-05 22:32 ` 2.6.9-rc1-mm3 Andrew Morton
2004-09-05 22:42 ` 2.6.9-rc1-mm3 Nathan Scott
2004-09-03 15:59 ` 2.6.9-rc1-mm3 Peter Osterlund
2004-09-03 16:37 ` 2.6.9-rc1-mm3 Andrew Morton
2004-09-05 8:59 ` 2.6.9-rc1-mm3 Peter Osterlund
2004-09-03 17:23 ` 2.6.9-rc1-mm3 William Lee Irwin III
2004-09-03 17:51 ` 2.6.9-rc1-mm3 Paulo Marques
2004-09-03 18:02 ` 2.6.9-rc1-mm3 William Lee Irwin III
2004-09-05 22:33 ` 2.6.9-rc1-mm3 Paulo Marques
2004-09-07 10:54 ` 2.6.9-rc1-mm3 Paulo Marques
2004-09-03 17:56 ` 2.6.9-rc1-mm3 Andre Eisenbach
2004-09-03 18:12 ` 2.6.9-rc1-mm3 William Lee Irwin III
2004-09-03 18:19 ` 2.6.9-rc1-mm3 Andre Eisenbach
2004-09-03 20:33 ` 2.6.9-rc1-mm3 Andrew Morton
2004-09-03 21:15 ` 2.6.9-rc1-mm3 Andre Eisenbach
2004-09-03 17:57 ` 2.6.9-rc1-mm3 (compile stats) John Cherry
2004-09-03 21:53 ` 2.6.9-rc1-mm3 William Lee Irwin III
2004-09-03 22:25 ` 2.6.9-rc1-mm3 William Lee Irwin III
2004-09-04 10:21 ` [patch] 2.6.9-rc1-mm3: char/riscom8.c doesn't compile Adrian Bunk
2004-09-04 17:52 ` [patch] 2.6.9-rc1-mm3: cdrom/cdu31a.c " Adrian Bunk
2004-09-08 22:29 ` 2.6.9-rc1-mm3 Dominik Karall
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=20040906131106.GA8202@mars.ravnborg.org \
--to=sam@ravnborg.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=takata@linux-m32r.org \
--cc=zwane@linuxpower.ca \
/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
Powered by JetHome