public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Trivial bugfix in 3c509.c
@ 2002-05-11 12:24 Kasper Dupont
  2002-05-11 15:49 ` Jeff Garzik
  0 siblings, 1 reply; 4+ messages in thread
From: Kasper Dupont @ 2002-05-11 12:24 UTC (permalink / raw)
  To: Linux-Kernel; +Cc: Alan Cox

With 3c509 compiled in kernel calling ifup after lots of
diskaccess causes an Oops.

read_eeprom was incorrectly marked as __init. This patch
applies against 2.4.19-pre8-ac1 and maybee also 2.4.19-pre8:

diff -Nur linux.old/drivers/net/3c509.c linux.new/drivers/net/3c509.c
--- linux.old/drivers/net/3c509.c       Sat May 11 13:53:45 2002
+++ linux.new/drivers/net/3c509.c       Sat May 11 13:55:09 2002
@@ -567,7 +567,7 @@
 /* Read a word from the EEPROM using the regular EEPROM access register.
    Assume that we are in register window zero.
  */
-static ushort __init read_eeprom(int ioaddr, int index)
+static ushort read_eeprom(int ioaddr, int index)
 {
 	outw(EEPROM_READ + index, ioaddr + 10);
 	/* Pause for at least 162 us. for the read to take place. */

May 11 14:01:41 eddie ifup: Determining IP information for eth0...
May 11 14:01:41 eddie kernel: Unable to handle kernel NULL pointer dereference at virtual address 00000006
May 11 14:01:41 eddie kernel:  printing eip:
May 11 14:01:41 eddie kernel: c02e05e0
May 11 14:01:41 eddie kernel: *pde = 00000000
May 11 14:01:41 eddie kernel: Oops: 0000
May 11 14:01:41 eddie kernel: CPU:    0
May 11 14:01:41 eddie kernel: EIP:    0010:[read_eeprom+0/48]    Not tainted
May 11 14:01:41 eddie kernel: EIP:    0010:[<c02e05e0>]    Not tainted
May 11 14:01:41 eddie kernel: EFLAGS: 00010246
May 11 14:01:41 eddie kernel: eax: 00000800   ebx: c02c63de   ecx: 00000006   edx: 0000022e
May 11 14:01:41 eddie kernel: esi: 0000022e   edi: 00000220   ebp: c02c6360   esp: c3c07ea4
May 11 14:01:41 eddie kernel: ds: 0018   es: 0018   ss: 0018
May 11 14:01:41 eddie kernel: Process dhcpcd (pid: 1715, stackpage=c3c07000)
May 11 14:01:41 eddie kernel: Stack: c01e4c80 00000220 00000014 0000022e c02c6360 00000220 00000000 c01e40ef 
May 11 14:01:41 eddie kernel:        c02c6360 c02c6360 00000000 00000063 c022150c c02c6360 c02c6360 00000002 
May 11 14:01:41 eddie ifup: ./ifup: line 250:  1715 Segmentation fault      /sbin/dhcpcd ${DHCPCDARGS} ${DEVICE}
May 11 14:01:41 eddie kernel:        c0222461 c02c6360 cb259140 c3c07f3d cbfb1744 cbfb1720 c024e274 c02c6360 
May 11 14:01:41 eddie kernel: Call Trace: [el3_up+128/464] [el3_open+111/160] [dev_open+76/176] [dev_change_flags+81/256] [devinet_ioctl+868/1696] 
May 11 14:01:41 eddie kernel: Call Trace: [<c01e4c80>] [<c01e40ef>] [<c022150c>] [<c0222461>] [<c024e274>] 
May 11 14:01:41 eddie kernel:    [do_page_fault+296/1147] [packet_ioctl+905/960] [sock_ioctl+28/32] [sys_ioctl+559/592] [system_call+51/64] 
May 11 14:01:41 eddie kernel:    [<c0112708>] [<c0258099>] [<c021b7dc>] [<c0143c1f>] [<c01089f3>] 
May 11 14:01:41 eddie kernel: 
May 11 14:01:41 eddie kernel: Code: 39 01 8b bb 1b d3 f9 1a 90 a4 24 fc 3a fa dc 62 6e 22 28 42 
May 11 14:01:41 eddie pumpd[1719]: starting at (uptime 0 days, 0:02:49) Sat May 11 14:01:41 2002  


-- 
Kasper Dupont -- der bruger for meget tid på usenet.
For sending spam use mailto:razor-report@daimi.au.dk

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

* Re: [PATCH] Trivial bugfix in 3c509.c
  2002-05-11 12:24 Kasper Dupont
@ 2002-05-11 15:49 ` Jeff Garzik
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2002-05-11 15:49 UTC (permalink / raw)
  To: Kasper Dupont; +Cc: Linux-Kernel, Alan Cox

Kasper Dupont wrote:

>With 3c509 compiled in kernel calling ifup after lots of
>diskaccess causes an Oops.
>
>read_eeprom was incorrectly marked as __init
>

thanks, will be applied to 2.4 and 2.5





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

* Re: [PATCH] Trivial bugfix in 3c509.c
@ 2002-05-12  1:16 Mikael Pettersson
  2002-05-12 15:25 ` Jeff Garzik
  0 siblings, 1 reply; 4+ messages in thread
From: Mikael Pettersson @ 2002-05-12  1:16 UTC (permalink / raw)
  To: davej, madkiss; +Cc: linux-kernel

Dave & Martin,

I noticed you guys included Kasper Dupont's patch in your
2.5.15 patch kits:
>With 3c509 compiled in kernel calling ifup after lots of
>diskaccess causes an Oops.
>
>read_eeprom was incorrectly marked as __init. This patch
>applies against 2.4.19-pre8-ac1 and maybee also 2.4.19-pre8:

Note that 2.4.19-pre8-ac1 has a newer version of 3c509.c than
either 2.4.19-pre8 vanilla or 2.5.15, and it's only the newer
version that calls read_eeprom() from non-__init code.
This patch is not needed for 2.5.15.

(The only calls to read_eeprom() in 2.5.15 are from el3_probe(),
which is __init.)

/Mikael

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

* Re: [PATCH] Trivial bugfix in 3c509.c
  2002-05-12  1:16 [PATCH] Trivial bugfix in 3c509.c Mikael Pettersson
@ 2002-05-12 15:25 ` Jeff Garzik
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2002-05-12 15:25 UTC (permalink / raw)
  To: Mikael Pettersson; +Cc: davej, madkiss, linux-kernel

Mikael Pettersson wrote:

>Dave & Martin,
>
>I noticed you guys included Kasper Dupont's patch in your
>2.5.15 patch kits:
>
>>With 3c509 compiled in kernel calling ifup after lots of
>>diskaccess causes an Oops.
>>
>>read_eeprom was incorrectly marked as __init. This patch
>>applies against 2.4.19-pre8-ac1 and maybee also 2.4.19-pre8:
>>
>
>Note that 2.4.19-pre8-ac1 has a newer version of 3c509.c than
>either 2.4.19-pre8 vanilla or 2.5.15, and it's only the newer
>version that calls read_eeprom() from non-__init code.
>This patch is not needed for 2.5.15.
>
>(The only calls to read_eeprom() in 2.5.15 are from el3_probe(),
>which is __init.)
>

Nevertheless, I applied it to both, because I want to sync up both 
copies as much as possible.

    Jeff




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

end of thread, other threads:[~2002-05-12 15:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-12  1:16 [PATCH] Trivial bugfix in 3c509.c Mikael Pettersson
2002-05-12 15:25 ` Jeff Garzik
  -- strict thread matches above, loose matches on Subject: below --
2002-05-11 12:24 Kasper Dupont
2002-05-11 15:49 ` Jeff Garzik

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