lkml.org 
[lkml]   [2009]   [Jan]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] HVC: do not request the irq twice.
From
Date
On Thu, 2009-01-22 at 20:09 +0100, Christian Borntraeger wrote:
> Am Thursday 22 January 2009 18:56:08 schrieb Ian Campbell:
> > --- a/drivers/char/hvc_irq.c
> > +++ b/drivers/char/hvc_irq.c
> > @@ -28,6 +28,10 @@ int notifier_add_irq(struct hvc_struct *hp, int irq)
> > hp->irq_requested = 0;
> > return 0;
> > }
> > +
> > + if (hp->irq_requested)
> > + return 0;
> > +
> > rc = request_irq(irq, hvc_handle_interrupt, IRQF_DISABLED,
> > "hvc_console", hp);
> > if (!rc)
>
> Unfortunately I have no system with an irq based hvc console - I cannot test
> this patch. Anyway, the patch looks sane:
>
> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
>
> If this really fixes a problem, I am asking myself, if notifier_del can be
> called several times as well. If yes, it might be better to call free_irq at
> the last notifier_del - which means we need proper refcounting. Otherwise the
> console switches into polling mode....

Hmm, interesting question. It looks like the count field in struct
hvc_struct is being used to count opens and closes which should
reference count the IRQ usage too.

Oh, I see, hvc_hangup resets count but the Xen dom0 hv_ops was missing
the hangup hook to release the IRQ -- I'll fix this.

I think this patch can be ignored, real bug is on the Xen side.

Ian.



\
 
 \ /
  Last update: 2009-01-23 10:49    [W:0.329 / U:0.180 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site