* Re: [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice
2006-03-09 23:44 [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice Kevin Winchester
@ 2006-03-09 17:48 ` Andi Kleen
2006-03-10 1:28 ` Randy.Dunlap
1 sibling, 0 replies; 5+ messages in thread
From: Andi Kleen @ 2006-03-09 17:48 UTC (permalink / raw)
To: Kevin Winchester; +Cc: akpm, linux-kernel
On Friday 10 March 2006 00:44, Kevin Winchester wrote:
>
> register_die_notifier is exported twice, once in traps.c and once in
> x8664_ksyms.c. This results in a warning on build.
>
> Signed-Off-By: Kevin Winchester <kwin@ns.sympatico.ca>
Applied. Thanks.
-Andi
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice
@ 2006-03-09 23:44 Kevin Winchester
2006-03-09 17:48 ` Andi Kleen
2006-03-10 1:28 ` Randy.Dunlap
0 siblings, 2 replies; 5+ messages in thread
From: Kevin Winchester @ 2006-03-09 23:44 UTC (permalink / raw)
To: akpm; +Cc: ak, linux-kernel
register_die_notifier is exported twice, once in traps.c and once in
x8664_ksyms.c. This results in a warning on build.
Signed-Off-By: Kevin Winchester <kwin@ns.sympatico.ca>
--- v2.6.16-rc5-mm3.orig/arch/x86_64/kernel/x8664_ksyms.c
2006-03-09 19:34:11.000000000 -0400
+++ v2.6.16-rc5-mm3/arch/x86_64/kernel/x8664_ksyms.c 2006-03-09
19:40:46.000000000 -0400
@@ -142,7 +142,6 @@ EXPORT_SYMBOL(rwsem_down_write_failed_th
EXPORT_SYMBOL(empty_zero_page);
EXPORT_SYMBOL(die_chain);
-EXPORT_SYMBOL(register_die_notifier);
#ifdef CONFIG_SMP
EXPORT_SYMBOL(cpu_sibling_map);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice
2006-03-09 23:44 [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice Kevin Winchester
2006-03-09 17:48 ` Andi Kleen
@ 2006-03-10 1:28 ` Randy.Dunlap
2006-03-10 1:37 ` Andrew Morton
1 sibling, 1 reply; 5+ messages in thread
From: Randy.Dunlap @ 2006-03-10 1:28 UTC (permalink / raw)
To: Kevin Winchester; +Cc: akpm, ak, linux-kernel
On Thu, 09 Mar 2006 19:44:59 -0400 Kevin Winchester wrote:
>
> register_die_notifier is exported twice, once in traps.c and once in
> x8664_ksyms.c. This results in a warning on build.
>
> Signed-Off-By: Kevin Winchester <kwin@ns.sympatico.ca>
>
> --- v2.6.16-rc5-mm3.orig/arch/x86_64/kernel/x8664_ksyms.c
> 2006-03-09 19:34:11.000000000 -0400
> +++ v2.6.16-rc5-mm3/arch/x86_64/kernel/x8664_ksyms.c 2006-03-09
> 19:40:46.000000000 -0400
> @@ -142,7 +142,6 @@ EXPORT_SYMBOL(rwsem_down_write_failed_th
> EXPORT_SYMBOL(empty_zero_page);
>
> EXPORT_SYMBOL(die_chain);
> -EXPORT_SYMBOL(register_die_notifier);
>
> #ifdef CONFIG_SMP
> EXPORT_SYMBOL(cpu_sibling_map);
Thanks for that. However, I see 2 such warnings:
WARNING: vmlinux: 'register_die_notifier' exported twice. Previous export was in vmlinux
WARNING: vmlinux: 'strlen' exported twice. Previous export was in vmlinux
---
~Randy
Please use an email client that implements proper (compliant) threading.
(You know who you are.)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice
2006-03-10 1:28 ` Randy.Dunlap
@ 2006-03-10 1:37 ` Andrew Morton
2006-03-10 12:29 ` Kevin Winchester
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2006-03-10 1:37 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: kwin, ak, linux-kernel
"Randy.Dunlap" <rdunlap@xenotime.net> wrote:
>
> On Thu, 09 Mar 2006 19:44:59 -0400 Kevin Winchester wrote:
>
> >
> > register_die_notifier is exported twice, once in traps.c and once in
> > x8664_ksyms.c. This results in a warning on build.
> >
> > Signed-Off-By: Kevin Winchester <kwin@ns.sympatico.ca>
> >
> > --- v2.6.16-rc5-mm3.orig/arch/x86_64/kernel/x8664_ksyms.c
> > 2006-03-09 19:34:11.000000000 -0400
> > +++ v2.6.16-rc5-mm3/arch/x86_64/kernel/x8664_ksyms.c 2006-03-09
> > 19:40:46.000000000 -0400
> > @@ -142,7 +142,6 @@ EXPORT_SYMBOL(rwsem_down_write_failed_th
> > EXPORT_SYMBOL(empty_zero_page);
> >
> > EXPORT_SYMBOL(die_chain);
> > -EXPORT_SYMBOL(register_die_notifier);
> >
> > #ifdef CONFIG_SMP
> > EXPORT_SYMBOL(cpu_sibling_map);
>
> Thanks for that. However, I see 2 such warnings:
>
> WARNING: vmlinux: 'register_die_notifier' exported twice. Previous export was in vmlinux
> WARNING: vmlinux: 'strlen' exported twice. Previous export was in vmlinux
>
They're all over the place. Some of them are due to -mm-only patches.
It's not very urgent. Let's get Sam's stuff settled down into mainline and
get all such warnings in mainline fixed up first. That way, people will
then know when their new patches are being bad and I'll know when -mm
patches need fixups.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice
2006-03-10 1:37 ` Andrew Morton
@ 2006-03-10 12:29 ` Kevin Winchester
0 siblings, 0 replies; 5+ messages in thread
From: Kevin Winchester @ 2006-03-10 12:29 UTC (permalink / raw)
To: Andrew Morton, Randy.Dunlap; +Cc: ak, linux-kernel
"Andrew Morton" <akpm@osdl.org> wrote:
> "Randy.Dunlap" <rdunlap@xenotime.net> wrote:
> >
> > On Thu, 09 Mar 2006 19:44:59 -0400 Kevin Winchester wrote:
> >
> > >
> > > register_die_notifier is exported twice, once in traps.c and once in
> > > x8664_ksyms.c. This results in a warning on build.
> > >
> > > Signed-Off-By: Kevin Winchester <kwin@ns.sympatico.ca>
> > >
> > > --- v2.6.16-rc5-mm3.orig/arch/x86_64/kernel/x8664_ksyms.c
> > > 2006-03-09 19:34:11.000000000 -0400
> > > +++ v2.6.16-rc5-mm3/arch/x86_64/kernel/x8664_ksyms.c 2006-03-09
> > > 19:40:46.000000000 -0400
> > > @@ -142,7 +142,6 @@ EXPORT_SYMBOL(rwsem_down_write_failed_th
> > > EXPORT_SYMBOL(empty_zero_page);
> > >
> > > EXPORT_SYMBOL(die_chain);
> > > -EXPORT_SYMBOL(register_die_notifier);
> > >
> > > #ifdef CONFIG_SMP
> > > EXPORT_SYMBOL(cpu_sibling_map);
> >
> > Thanks for that. However, I see 2 such warnings:
> >
> > WARNING: vmlinux: 'register_die_notifier' exported twice. Previous
export was in vmlinux
> > WARNING: vmlinux: 'strlen' exported twice. Previous export was in
vmlinux
> >
>
> They're all over the place. Some of them are due to -mm-only patches.
>
> It's not very urgent. Let's get Sam's stuff settled down into mainline
and
> get all such warnings in mainline fixed up first. That way, people will
> then know when their new patches are being bad and I'll know when -mm
> patches need fixups.
Fixing warnings like this is about the extent of my kernel abilities, so I
figured I'd do it even if it isn't high priority. I do get the strlen
warning as well, that was going to be tonight's task.
If it helps, I don't see any warnings on the -rc5 kernel. These two are the
only ones I see.
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-03-10 12:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-09 23:44 [PATCH -mm3] x86-64: Eliminate register_die_notifier symbol exported twice Kevin Winchester
2006-03-09 17:48 ` Andi Kleen
2006-03-10 1:28 ` Randy.Dunlap
2006-03-10 1:37 ` Andrew Morton
2006-03-10 12:29 ` Kevin Winchester
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.