[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20061109222829.fe9de523.akpm@osdl.org>
Date: Thu, 9 Nov 2006 22:28:29 -0800
From: Andrew Morton <akpm@...l.org>
To: eric@...dington.net, Eric Buddington <ebuddington@...izon.net>,
linux-kernel@...r.kernel.org, Greg KH <greg@...ah.com>,
Kay Sievers <kay.sievers@...ell.com>,
Jaroslav Kysela <perex@...e.cz>, Takashi Iwai <tiwai@...e.de>
Subject: Re: 2.6.19-rc4-mm2: BUG modprobeing sound driver
On Thu, 9 Nov 2006 22:05:15 -0800
Andrew Morton <akpm@...l.org> wrote:
> Yup, trivial to reproduce: modprobe snd_serial_u16550 -> splat.
>
> Bisection indicates that this oops is triggered by
> gregkh-driver-sound-device.patch.
>
> snd_serial_probe() never got to call snd_card_register(), so card->dev is
> NULL.
>
> snd_serial_probe() calls snd_card_free(card) on the error path and
> snd_card_do_free() does device_del(card->dev) which oopses over the null
> pointer it got.
I suppose doing this is legit:
diff -puN sound/core/init.c~fix-gregkh-driver-sound-device sound/core/init.c
--- a/sound/core/init.c~fix-gregkh-driver-sound-device
+++ a/sound/core/init.c
@@ -361,7 +361,8 @@ static int snd_card_do_free(struct snd_c
snd_printk(KERN_WARNING "unable to free card info\n");
/* Not fatal error */
}
- device_unregister(card->dev);
+ if (card->dev)
+ device_unregister(card->dev);
kfree(card);
return 0;
}
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists