netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: Oops at __neigh_for_each_release (2.6.9-rc3)
       [not found] <200410012217.35264.baldrick@free.fr>
@ 2004-10-01 20:56 ` David S. Miller
  2004-10-02  7:58   ` Duncan Sands
  0 siblings, 1 reply; 2+ messages in thread
From: David S. Miller @ 2004-10-01 20:56 UTC (permalink / raw)
  To: Duncan Sands; +Cc: linux-kernel, netdev, laforge

On Fri, 1 Oct 2004 22:17:35 +0200
Duncan Sands <baldrick@free.fr> wrote:

> EIP is at __neigh_for_each_release+0x32/0xb0

Give this patch a try.  And please report networking bugs
to netdev@oss.sgi.com in the future, thanks.

===== net/atm/clip.c 1.42 vs edited =====
--- 1.42/net/atm/clip.c	2004-09-23 18:02:32 -07:00
+++ edited/net/atm/clip.c	2004-10-01 13:35:40 -07:00
@@ -984,19 +984,7 @@
 
 static int __init atm_clip_init(void)
 {
-	/* we should use neigh_table_init() */
-	clip_tbl.lock = RW_LOCK_UNLOCKED;
-	clip_tbl.kmem_cachep = kmem_cache_create(clip_tbl.id,
-	    clip_tbl.entry_size, 0, SLAB_HWCACHE_ALIGN, NULL, NULL);
-
-	if (!clip_tbl.kmem_cachep)
-		return -ENOMEM;
-
-	/* so neigh_ifdown() doesn't complain */
-	clip_tbl.proxy_timer.data = 0;
-	clip_tbl.proxy_timer.function = NULL;
-	init_timer(&clip_tbl.proxy_timer);
-	skb_queue_head_init(&clip_tbl.proxy_queue);
+	neigh_table_init(&clip_tbl);
 
 	clip_tbl_hook = &clip_tbl;
 	register_atm_ioctl(&clip_ioctl_ops);
@@ -1022,7 +1010,6 @@
 
 	deregister_atm_ioctl(&clip_ioctl_ops);
 
-	neigh_ifdown(&clip_tbl, NULL);
 	dev = clip_devs;
 	while (dev) {
 		next = PRIV(dev)->next;
@@ -1030,9 +1017,11 @@
 		free_netdev(dev);
 		dev = next;
 	}
-	if (start_timer == 0) del_timer(&idle_timer);
 
-	kmem_cache_destroy(clip_tbl.kmem_cachep);
+	neigh_table_clear(&clip_tbl);
+
+	if (start_timer == 0)
+		del_timer(&idle_timer);
 
 	clip_tbl_hook = NULL;
 }

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

* Re: Oops at __neigh_for_each_release (2.6.9-rc3)
  2004-10-01 20:56 ` Oops at __neigh_for_each_release (2.6.9-rc3) David S. Miller
@ 2004-10-02  7:58   ` Duncan Sands
  0 siblings, 0 replies; 2+ messages in thread
From: Duncan Sands @ 2004-10-02  7:58 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, netdev, laforge

> > EIP is at __neigh_for_each_release+0x32/0xb0
> 
> Give this patch a try.  And please report networking bugs
> to netdev@oss.sgi.com in the future, thanks.

OK, will do.  I tested the patch Linus committed - it indeed fixes
the oops.

Thanks a lot!

Duncan.

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

end of thread, other threads:[~2004-10-02  7:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200410012217.35264.baldrick@free.fr>
2004-10-01 20:56 ` Oops at __neigh_for_each_release (2.6.9-rc3) David S. Miller
2004-10-02  7:58   ` Duncan Sands

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).