* Re: [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed
@ 2004-11-15 15:27 O.Sezer
2004-11-15 23:17 ` David S. Miller
2004-11-15 23:18 ` [patch] 2.4.28-rc3: __neigh_for_each_release " Adrian Bunk
0 siblings, 2 replies; 5+ messages in thread
From: O.Sezer @ 2004-11-15 15:27 UTC (permalink / raw)
To: linux-kernel; +Cc: davem, bunk
A similar export should also be needed for __neigh_for_each_release :
/sbin/depmod -ae -F System.map 2.4.28-rc3aac2
depmod: *** Unresolved symbols in
/lib/modules/2.4.28-rc3aac2/kernel/net/atm/clip.o
depmod: __neigh_for_each_release
Ozkan Sezer
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed
2004-11-15 15:27 [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed O.Sezer
@ 2004-11-15 23:17 ` David S. Miller
2004-11-15 23:18 ` [patch] 2.4.28-rc3: __neigh_for_each_release " Adrian Bunk
1 sibling, 0 replies; 5+ messages in thread
From: David S. Miller @ 2004-11-15 23:17 UTC (permalink / raw)
To: O.Sezer; +Cc: linux-kernel, bunk
On Mon, 15 Nov 2004 17:27:56 +0200
"O.Sezer" <sezeroz@ttnet.net.tr> wrote:
> A similar export should also be needed for __neigh_for_each_release :
>
> /sbin/depmod -ae -F System.map 2.4.28-rc3aac2
> depmod: *** Unresolved symbols in
> /lib/modules/2.4.28-rc3aac2/kernel/net/atm/clip.o
> depmod: __neigh_for_each_release
Good catch, I've fixed this in my tree and will push
upstream.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [patch] 2.4.28-rc3: __neigh_for_each_release must be EXPORT_SYMBOL'ed
2004-11-15 15:27 [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed O.Sezer
2004-11-15 23:17 ` David S. Miller
@ 2004-11-15 23:18 ` Adrian Bunk
1 sibling, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2004-11-15 23:18 UTC (permalink / raw)
To: O.Sezer; +Cc: linux-kernel, davem
On Mon, Nov 15, 2004 at 05:27:56PM +0200, O.Sezer wrote:
> A similar export should also be needed for __neigh_for_each_release :
>
> /sbin/depmod -ae -F System.map 2.4.28-rc3aac2
> depmod: *** Unresolved symbols in
> /lib/modules/2.4.28-rc3aac2/kernel/net/atm/clip.o
> depmod: __neigh_for_each_release
Thanks for this report.
For some strange reason, this wasn't covered by the modular .config I
used for testing...
Patch (on top of my other patch) below.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.4.28-rc3-modular/net/core/neighbour.c.old 2004-11-15 22:14:54.000000000 +0100
+++ linux-2.4.28-rc3-modular/net/core/neighbour.c 2004-11-15 22:15:19.000000000 +0100
@@ -1597,6 +1597,7 @@
}
}
}
+EXPORT_SYMBOL(__neigh_for_each_release);
#ifdef CONFIG_PROC_FS
^ permalink raw reply [flat|nested] 5+ messages in thread
* Linux 2.4.28-rc3
@ 2004-11-12 18:00 Marcelo Tosatti
2004-11-13 20:07 ` [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed Adrian Bunk
0 siblings, 1 reply; 5+ messages in thread
From: Marcelo Tosatti @ 2004-11-12 18:00 UTC (permalink / raw)
To: linux-kernel
Hi,
Here goes the third release candidate.
It contains a v2.6 backport of the binfmt_elf potential vulnerabilities
disclosed this week, an enhanced smbfs client overflow fix, an ACPI update
fixing a couple of nasty bugs, a NFS client bugfix and a network update
from Davem.
Summary of changes from v2.4.28-rc2 to v2.4.28-rc3
============================================
Aaron Grothe:
o [CRYPTO]: Add Anubis support
Chris Wright:
o binfmt_elf: handle partial reads gracefully
David S. Miller:
o [TG3]: Use ioremap_nocache()
o [TG3]: Bump driver version and reldate
o Cset exclude: davem@nuts.davemloft.net|ChangeSet|20040831000448|00808
o Cset exclude: pablo@eurodev.net|ChangeSet|20040831000223|00117
o [ATM]: Put back mistakedly removed LEC procfs code
Herbert Xu:
o [NET]: Fix tbl->entries race
Len Brown:
o [ACPI] fix ASUS boot crash http://bugzilla.kernel.org/show_bug.cgi?id=2755
o [ACPI] fix poweroff regression backport from 2.6 and ACPICA 20040427 http://bugzilla.kernel.org/show_bug.cgi?id=2109
Marcelo Tosatti:
o Changed EXTRAVERSION to -rc3
Mike Miller:
o cleans up warnings in 32/64-bit conversions
Mike Waychison:
o [TG3]: Fix fiber hw autoneg bounces
Patrick McHardy:
o [PKT_SCHED]: Don't try to destroy builtin qdiscs
Stefan Esser:
o Improved smbfs client overflow fix
Thomas Graf:
o [NET]: Fix neighbour/arp build
o [PKT_SCHED]: break is not enough to stop walking
Trond Myklebust:
o NFS: Always wake up tasks that are waiting on the sillyrenamed file to complete
Wensong Zhang:
o [IPVS]: Update version to 1.2.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed
2004-11-12 18:00 Linux 2.4.28-rc3 Marcelo Tosatti
@ 2004-11-13 20:07 ` Adrian Bunk
2004-11-14 7:25 ` David S. Miller
0 siblings, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2004-11-13 20:07 UTC (permalink / raw)
To: Marcelo Tosatti, Harald Welte, David S. Miller
Cc: linux-kernel, netdev, patrick, linux-decnet-user
I'm getting the following error:
<-- snip -->
depmod: *** Unresolved symbols in /lib/modules/2.4.28-rc3/kernel/net/decnet/decnet.o
depmod: neigh_for_each
<-- snip -->
This was caused by Harald's backport of the neighbour scalability fixes
from 2.6 .
neigh_for_each must be EXPORT_SYMBOL'ed (as it is in 2.6):
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.4.28-rc3-modular/net/core/Makefile.old 2004-11-13 19:40:36.000000000 +0100
+++ linux-2.4.28-rc3-modular/net/core/Makefile 2004-11-13 19:40:50.000000000 +0100
@@ -9,7 +9,7 @@
O_TARGET := core.o
-export-objs := netfilter.o profile.o ethtool.o
+export-objs := netfilter.o profile.o ethtool.o neighbour.o
obj-y := sock.o skbuff.o iovec.o datagram.o scm.o
--- linux-2.4.28-rc3-modular/net/core/neighbour.c.old 2004-11-13 19:35:26.000000000 +0100
+++ linux-2.4.28-rc3-modular/net/core/neighbour.c 2004-11-13 19:35:59.000000000 +0100
@@ -1569,6 +1569,7 @@
}
read_unlock_bh(&tbl->lock);
}
+EXPORT_SYMBOL(neigh_for_each);
/* The tbl->lock must be held as a writer and BH disabled. */
void __neigh_for_each_release(struct neigh_table *tbl,
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-11-15 23:37 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-15 15:27 [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed O.Sezer
2004-11-15 23:17 ` David S. Miller
2004-11-15 23:18 ` [patch] 2.4.28-rc3: __neigh_for_each_release " Adrian Bunk
-- strict thread matches above, loose matches on Subject: below --
2004-11-12 18:00 Linux 2.4.28-rc3 Marcelo Tosatti
2004-11-13 20:07 ` [patch] 2.4.28-rc3: neigh_for_each must be EXPORT_SYMBOL'ed Adrian Bunk
2004-11-14 7:25 ` David S. Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox