Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 18 Nov 2002 03:57:58 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 18 Nov 2002 03:57:58 -0500 Received: from modemcable017.51-203-24.mtl.mc.videotron.ca ([24.203.51.17]:50851 "EHLO montezuma.mastecende.com") by vger.kernel.org with ESMTP id ; Mon, 18 Nov 2002 03:57:57 -0500 Date: Mon, 18 Nov 2002 04:07:17 -0500 (EST) From: Zwane Mwaikambo X-X-Sender: zwane@montezuma.mastecende.com To: Taral cc: alsa-devel@lists.sourceforge.net, Subject: Re: Oops when removing snd-timer In-Reply-To: <20021118080208.GA4945@hatchling.taral.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1051 Lines: 32 On Mon, 18 Nov 2002, Taral wrote: > I was unloading ALSA (modular) when I got this lovely oops: > (linux-2.5.47) Looks like you loaded ens137x.c and then that driver got unloaded leaving the callback still valid, then the core timer code decided to walk off a cliff using that pointer. 0xc0365322 is in snd_timer_free (sound/core/timer.c:676). 671 static int snd_timer_free(snd_timer_t *timer) 672 { 673 snd_assert(timer != NULL, return -ENXIO); 674 if (timer->private_free) 675 timer->private_free(timer); 676 snd_magic_kfree(timer); 677 return 0; 678 } The problem seems to be a sort of chicken/egg case? We can't rely on modules being around even with this inter dependency case. Zwane -- function.linuxpower.ca - 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/