public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [Linux-ia64] Kernel dumps stacks while calling exported function from a loadable module
@ 2002-08-20  9:52 Jeff Lee
  2002-08-20 11:11 ` Matthew Wilcox
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jeff Lee @ 2002-08-20  9:52 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 1362 bytes --]

Hello everyone, 

I am having trouble in calling exported functions on my RH 7.2 box.
running 2.4.9-18 kernel.  The calling module causes kernel stack dumps
with messages like this:

insmod[1508]: Unimplemented Instruction Address fault 4398046511120
Using_Versions [] 0x2047fff <-- 
::

My modules are really trivial.  The one exported a dummy function is
listed below:

void dummy(void)
{
  printk("Dummy is called!\n");
}

int init_module(void)      
{ 
  printk("<1>Hello, world\n"); 
  return 0; 
}

And the calling module looks like this:

extern void dummy(void);

int init_module(void)      
{ 
  printk("<00>Hello, world\n"); 
  dummy();
  printk("done\n"); 
  return 0; 
}


The compilation line looks like this:

/opt/gcc3.1/bin/gcc -c -DLINUX -D__SMP__ -D"__BOOT_KERNEL_SMP=1"
-D"__BOOT_KERNEL_UP=0"  -O2 -Wall -Wstrict-prototypes  -D__ia64__ -D_LP64
-ffixed-r13 -mfixed-range=f10-f15,f32-f127 -falign-functions=32
-fno-common -Wno-unused -mb-step -I -I/usr/src/linux-2.4/drivers/scsi -I
-I/scsi  -I/usr/src/linux-2.4/drivers/scsi -DMODULE -DMODVERSIONS -include
/usr/src/linux-2.4/include/linux/modversions.h-D__KERNEL__  myhello1.c

The module that exports function loads without any problems but the
calling module fails.  

Any input regarding this matter is greatly appreciated.


Jeff Lee


[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 10876 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-08-20 11:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-20  9:52 [Linux-ia64] Kernel dumps stacks while calling exported function from a loadable module Jeff Lee
2002-08-20 11:11 ` Matthew Wilcox
2002-08-20 11:22 ` Richard Hirst
2002-08-20 11:41 ` Jeff Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox