Re: Linux 2.4.21-rc3 - ipmi unresolved

Eyal Lebedinsky (eyal@eyal.emu.id.au)
Fri, 23 May 2003 23:38:53 +1000


This is a multi-part message in MIME format.
--------------2F59CA615A8413B80914A7D8
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Marcelo Tosatti wrote:
>
> Hi,
>
> Here goes the third release candidate of 2.4.21.
>
> Summary of changes from v2.4.21-rc2 to v2.4.21-rc3
> ============================================
[trim]
> Alan Cox <alan@lxorguk.ukuu.org.uk>:
> o fix ipmi screwup

The exports in ksyms are still necessary, and missing:

depmod: *** Unresolved symbols in
/lib/modules/2.4.21-rc3/kernel/drivers/char/ipmi/ipmi_msghandler.o
depmod: panic_notifier_list
depmod: *** Unresolved symbols in
/lib/modules/2.4.21-rc3/kernel/drivers/char/ipmi/ipmi_watchdog.o
depmod: panic_notifier_list
depmod: panic_timeout

The attached snippet was part of the earlier, larger patch.

--
Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.org/eyal/>
--------------2F59CA615A8413B80914A7D8
Content-Type: text/plain; charset=us-ascii;
 name="2.4.21-rc3-ipmi.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="2.4.21-rc3-ipmi.patch"

--- linux/kernel/ksyms.c.orig Fri May 23 22:17:07 2003 +++ linux/kernel/ksyms.c Fri May 23 22:16:38 2003 @@ -65,6 +65,7 @@ extern int request_dma(unsigned int dmanr, char * deviceID); extern void free_dma(unsigned int dmanr); extern spinlock_t dma_spin_lock; +extern int panic_timeout; #ifdef CONFIG_MODVERSIONS const struct module_symbol __export_Using_Versions @@ -471,6 +472,8 @@ /* misc */ EXPORT_SYMBOL(panic); +EXPORT_SYMBOL(panic_notifier_list); +EXPORT_SYMBOL(panic_timeout); EXPORT_SYMBOL(__out_of_line_bug); EXPORT_SYMBOL(sprintf); EXPORT_SYMBOL(snprintf);

--------------2F59CA615A8413B80914A7D8--

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/