* [PATCH] saa7134: fix thread shutdown handling
@ 2007-06-21 18:45 Jeff Mahoney
2007-06-23 16:54 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Mahoney @ 2007-06-21 18:45 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: Gerd Knorr, Andrew Morton
This patch changes the test for the thread pid from >= 0 to > 0.
When the saa8134 driver initialization fails after a certain point,
it goes through the complete shutdown process for the driver. Part
of shutting it down includes tearing down the thread for tv audio.
The test for tearing down the thread tests for >= 0. Since the dev
structure is kzalloc'd, the test will always be true if we haven't
tried to start the thread yet. We end up waiting on pid 0 to complete,
which will never happen, so we lock up.
This bug was observed in Novell Bugzilla 284718, when request_irq()
failed.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
---
drivers/media/video/saa7134/saa7134-tvaudio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/media/video/saa7134/saa7134-tvaudio.c 2007-06-12 15:45:16.000000000 -0400
+++ b/drivers/media/video/saa7134/saa7134-tvaudio.c 2007-06-15 14:16:14.000000000 -0400
@@ -1005,7 +1005,7 @@
int saa7134_tvaudio_fini(struct saa7134_dev *dev)
{
/* shutdown tvaudio thread */
- if (dev->thread.pid >= 0) {
+ if (dev->thread.pid > 0) {
dev->thread.shutdown = 1;
wake_up_interruptible(&dev->thread.wq);
wait_for_completion(&dev->thread.exit);
--
Jeff Mahoney
SUSE Labs
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] saa7134: fix thread shutdown handling
2007-06-21 18:45 [PATCH] saa7134: fix thread shutdown handling Jeff Mahoney
@ 2007-06-23 16:54 ` Andrew Morton
2007-06-23 18:47 ` Mauro Carvalho Chehab
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2007-06-23 16:54 UTC (permalink / raw)
To: Jeff Mahoney; +Cc: linux-kernel, kraxel, Mauro Carvalho Chehab, stable
> On Thu, 21 Jun 2007 14:45:22 -0400 Jeff Mahoney <jeffm@suse.com> wrote:
> This patch changes the test for the thread pid from >= 0 to > 0.
>
> When the saa8134 driver initialization fails after a certain point,
> it goes through the complete shutdown process for the driver. Part
> of shutting it down includes tearing down the thread for tv audio.
>
> The test for tearing down the thread tests for >= 0. Since the dev
> structure is kzalloc'd, the test will always be true if we haven't
> tried to start the thread yet. We end up waiting on pid 0 to complete,
> which will never happen, so we lock up.
>
> This bug was observed in Novell Bugzilla 284718, when request_irq()
> failed.
>
> Signed-off-by: Jeff Mahoney <jeffm@suse.com>
>
> ---
>
> drivers/media/video/saa7134/saa7134-tvaudio.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/drivers/media/video/saa7134/saa7134-tvaudio.c 2007-06-12 15:45:16.000000000 -0400
> +++ b/drivers/media/video/saa7134/saa7134-tvaudio.c 2007-06-15 14:16:14.000000000 -0400
> @@ -1005,7 +1005,7 @@
> int saa7134_tvaudio_fini(struct saa7134_dev *dev)
> {
> /* shutdown tvaudio thread */
> - if (dev->thread.pid >= 0) {
> + if (dev->thread.pid > 0) {
> dev->thread.shutdown = 1;
> wake_up_interruptible(&dev->thread.wq);
> wait_for_completion(&dev->thread.exit);
>
This is no longer applicable to the dvb devel tree, because this code has
been converted to the kthread API.
However I guess we do want this in 2.6.22 and in 2.6.21.x. Mauro, if
that's OK, do you want me to do the merges?
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] saa7134: fix thread shutdown handling
2007-06-23 16:54 ` Andrew Morton
@ 2007-06-23 18:47 ` Mauro Carvalho Chehab
0 siblings, 0 replies; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2007-06-23 18:47 UTC (permalink / raw)
To: Andrew Morton; +Cc: Jeff Mahoney, linux-kernel, kraxel, stable
Em Sáb, 2007-06-23 às 09:54 -0700, Andrew Morton escreveu:
> > On Thu, 21 Jun 2007 14:45:22 -0400 Jeff Mahoney <jeffm@suse.com> wrote:
> > This patch changes the test for the thread pid from >= 0 to > 0.
> >
> > When the saa8134 driver initialization fails after a certain point,
> > it goes through the complete shutdown process for the driver. Part
> > of shutting it down includes tearing down the thread for tv audio.
> >
> > The test for tearing down the thread tests for >= 0. Since the dev
> > structure is kzalloc'd, the test will always be true if we haven't
> > tried to start the thread yet. We end up waiting on pid 0 to complete,
> > which will never happen, so we lock up.
> >
> > This bug was observed in Novell Bugzilla 284718, when request_irq()
> > failed.
> >
> > Signed-off-by: Jeff Mahoney <jeffm@suse.com>
> >
> > ---
> >
> > drivers/media/video/saa7134/saa7134-tvaudio.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > --- a/drivers/media/video/saa7134/saa7134-tvaudio.c 2007-06-12 15:45:16.000000000 -0400
> > +++ b/drivers/media/video/saa7134/saa7134-tvaudio.c 2007-06-15 14:16:14.000000000 -0400
> > @@ -1005,7 +1005,7 @@
> > int saa7134_tvaudio_fini(struct saa7134_dev *dev)
> > {
> > /* shutdown tvaudio thread */
> > - if (dev->thread.pid >= 0) {
> > + if (dev->thread.pid > 0) {
> > dev->thread.shutdown = 1;
> > wake_up_interruptible(&dev->thread.wq);
> > wait_for_completion(&dev->thread.exit);
> >
>
> This is no longer applicable to the dvb devel tree, because this code has
> been converted to the kthread API.
>
> However I guess we do want this in 2.6.22 and in 2.6.21.x. Mauro, if
> that's OK, do you want me to do the merges?
Yes, please, Andrew. I'm OK on merging this for the -stable trees.
>
--
Cheers,
Mauro
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-06-23 22:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-21 18:45 [PATCH] saa7134: fix thread shutdown handling Jeff Mahoney
2007-06-23 16:54 ` Andrew Morton
2007-06-23 18:47 ` Mauro Carvalho Chehab
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox