* [OOPS] with 2.2.18
@ 2001-01-17 20:16 Udo A. Steinberg
2001-01-17 21:37 ` PCMCIA problem loading ide-floppy from ide_cs Paul Bristow
0 siblings, 1 reply; 3+ messages in thread
From: Udo A. Steinberg @ 2001-01-17 20:16 UTC (permalink / raw)
To: Linux-Kernel
Hello,
Below is a decoded oops from a standard 2.2.18 kernel.
If you need any additional info, please let me know.
Regards,
Udo.
ksymoops 2.3.5 on i686 2.2.18. Options used
-V (default)
-k /proc/ksyms (default)
-l /proc/modules (default)
-o /lib/modules/2.2.18/ (default)
-m /boot/System.map-2.2.18 (specified)
Unable to handle kernel NULL pointer dereference at virtual address 00000001
current->tss.cr3 = 051f3000, %cr3 = 051f3000
*pde = 00000000
Oops: 0002
CPU: 0
EIP: 0010:[<c0130fc0>]
Using defaults from ksymoops -t elf32-i386 -a i386
EFLAGS: 00010246
eax: 00000001 ebx: c5ffe5c0 ecx: 00000000 edx: cb1bec60
esi: c01fde25 edi: c01fde28 ebp: 00000000 esp: c3037f4c
ds: 0018 es: 0018 ss: 0018
Process sslwrap (pid: 10350, process nr: 44, stackpage=c3037000)
Stack: ca85dd1c bffffc68 c5ffe620 c0131028 00000000 c01fde28 cb1beae0 00000003
c01796d8 ca85dd1c 00000000 00000000 00000000 080ae3d6 c0179eb3 ca85dd1c
00000000 ca85ddbc c017ab34 00000002 00000001 00000000 c3036000 00000002
Call Trace: [<c0131028>] [<c01fde28>] [<c01796d8>] [<c0179eb3>] [<c017ab34>] [<c01094bd>] [<c01093ac>]
Code: 89 00 44 8b 47 08 89 43 48 00 43 50 00 00 00 00 c7 00 5c 00
>>EIP; c0130fc0 <d_alloc+12c/150> <=====
Trace; c0131028 <d_alloc_root+18/3c>
Trace; c01fde28 <cprt+168/b316>
Trace; c01796d8 <get_fd+54/d0>
Trace; c0179eb3 <sys_socket+33/78>
Trace; c017ab34 <sys_socketcall+64/1e0>
Trace; c01094bd <error_code+2d/34>
Trace; c01093ac <system_call+34/38>
Code; c0130fc0 <d_alloc+12c/150>
00000000 <_EIP>:
Code; c0130fc0 <d_alloc+12c/150> <=====
0: 89 00 movl %eax,(%eax) <=====
Code; c0130fc2 <d_alloc+12e/150>
2: 44 incl %esp
Code; c0130fc3 <d_alloc+12f/150>
3: 8b 47 08 movl 0x8(%edi),%eax
Code; c0130fc6 <d_alloc+132/150>
6: 89 43 48 movl %eax,0x48(%ebx)
Code; c0130fc9 <d_alloc+135/150>
9: 00 43 50 addb %al,0x50(%ebx)
Code; c0130fcc <d_alloc+138/150>
c: 00 00 addb %al,(%eax)
Code; c0130fce <d_alloc+13a/150>
e: 00 00 addb %al,(%eax)
Code; c0130fd0 <d_alloc+13c/150>
10: c7 00 5c 00 00 00 movl $0x5c,(%eax)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 3+ messages in thread
* PCMCIA problem loading ide-floppy from ide_cs
2001-01-17 20:16 [OOPS] with 2.2.18 Udo A. Steinberg
@ 2001-01-17 21:37 ` Paul Bristow
2001-01-18 8:59 ` Christian Gennerat
0 siblings, 1 reply; 3+ messages in thread
From: Paul Bristow @ 2001-01-17 21:37 UTC (permalink / raw)
To: Linux-Kernel; +Cc: David Hinds
Hi,
I am trying to understand the new PCMCIA configuration. So far I am trying
to use the kernel PCMCIA driver. The yenta_socket driver is working fine.
Using 2.4.0, and cardmgr 3.1.23
When I insert my Iomega Clik drive, cardmgr correctly identifies it as an ATA
Fixed Disk and loads ide_cs. ide_cs does the ide_probe and correctly assumes
that the drive is an ide-floppy. However at this point it doesn't seem to
even try to load the module. KMOD is set to y in .config
If I preload the ide-floppy module everything loads up fine and I can use the
drive perfectly. However, when I do a cardctl eject 0, everything screws up.
The eject command says it works, unlinks ide_cs, but seems to leave
ide-floppy working! and yes, I have run depmod -a about a zillion times.
modprobe -nv finds the modules no problem.
Any pointers on where or what is wrong here?
Thanks
--
Paul Bristow
ide-floppy maintainer
http://paulbristow.net/linux/idefloppy.html
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: PCMCIA problem loading ide-floppy from ide_cs
2001-01-17 21:37 ` PCMCIA problem loading ide-floppy from ide_cs Paul Bristow
@ 2001-01-18 8:59 ` Christian Gennerat
0 siblings, 0 replies; 3+ messages in thread
From: Christian Gennerat @ 2001-01-18 8:59 UTC (permalink / raw)
To: paul; +Cc: Linux-Kernel, David Hinds
Paul Bristow a écrit :
> Hi,
>
> I am trying to understand the new PCMCIA configuration. So far I am trying
> to use the kernel PCMCIA driver. The yenta_socket driver is working fine.
>
> Using 2.4.0, and cardmgr 3.1.23
>
> When I insert my Iomega Clik drive, cardmgr correctly identifies it as an ATA
> Fixed Disk and loads ide_cs. ide_cs does the ide_probe and correctly assumes
> that the drive is an ide-floppy. However at this point it doesn't seem to
> even try to load the module. KMOD is set to y in .config
>
> If I preload the ide-floppy module everything loads up fine and I can use the
> drive perfectly. However, when I do a cardctl eject 0, everything screws up.
> The eject command says it works, unlinks ide_cs, but seems to leave
> ide-floppy working! and yes, I have run depmod -a about a zillion times.
>
> modprobe -nv finds the modules no problem.
with modutils-2.4.1-1mdk I had to create some new sym-links
# ls -l /lib/modules/2.4.0-2mdk/pcmcia/
total 0
lrwxrwxrwx ide_cs.o -> ../kernel/drivers/ide/ide-cs.o
lrwxrwxrwx floppy.o -> ../kernel/drivers/block/floppy.o
lrwxrwxrwx floppy_cs.o -> ../kernel/drivers/block/floppy_cs.o
-
I think you must do the same for ide-floppy
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2001-01-18 9:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-01-17 20:16 [OOPS] with 2.2.18 Udo A. Steinberg
2001-01-17 21:37 ` PCMCIA problem loading ide-floppy from ide_cs Paul Bristow
2001-01-18 8:59 ` Christian Gennerat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox