lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 3 Jul 2014 13:55:49 -0700
From:	Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To:	Samuel Iglesias Gonsálvez 
	<siglesias@...lia.com>
Cc:	Federico Vaga <federico.vaga@...n.ch>,
	Jens Taprogge <jens.taprogge@...rogge.org>,
	industrypack-devel@...ts.sourceforge.net,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] ipoctal: request_irq after configuration

On Thu, Jul 03, 2014 at 10:56:55AM +0200, Samuel Iglesias Gonsálvez wrote:
> On Thu, 2014-07-03 at 10:53 +0200, Federico Vaga wrote:
> > The request for an IRQ handler must be done after whole configuration. This
> > was not the case for this driver which request the IRQ in the middle of
> > the configuration. Sometimes, it happens that something is not completely
> > configured, we recieve an interrupt thus we stumble into troubles in the
> > IRQ handler.
> > 
> > Signed-off-by: Federico Vaga <federico.vaga@...n.ch>
> > ---
> >  drivers/ipack/devices/ipoctal.c |   15 ++++++++-------
> >  1 file changed, 8 insertions(+), 7 deletions(-)
> > 
> > diff --git a/drivers/ipack/devices/ipoctal.c b/drivers/ipack/devices/ipoctal.c
> > index a7ec6f9..72fd761 100644
> > --- a/drivers/ipack/devices/ipoctal.c
> > +++ b/drivers/ipack/devices/ipoctal.c
> > @@ -344,13 +344,6 @@ static int ipoctal_inst_slot(struct ipoctal *ipoctal, unsigned int bus_nr,
> >  			 &block_regs[i].w.imr);
> >  	}
> >  
> > -	/*
> > -	 * IP-OCTAL has different addresses to copy its IRQ vector.
> > -	 * Depending of the carrier these addresses are accesible or not.
> > -	 * More info in the datasheet.
> > -	 */
> > -	ipoctal->dev->bus->ops->request_irq(ipoctal->dev,
> > -				       ipoctal_irq_handler, ipoctal);
> >  	/* Dummy write */
> >  	iowrite8(1, ipoctal->mem8_space + 1);
> >  
> > @@ -411,6 +404,14 @@ static int ipoctal_inst_slot(struct ipoctal *ipoctal, unsigned int bus_nr,
> >  		dev_set_drvdata(tty_dev, channel);
> >  	}
> >  
> > +	/*
> > +	 * IP-OCTAL has different addresses to copy its IRQ vector.
> > +	 * Depending of the carrier these addresses are accesible or not.
> > +	 * More info in the datasheet.
> > +	 */
> > +	ipoctal->dev->bus->ops->request_irq(ipoctal->dev,
> > +				       ipoctal_irq_handler, ipoctal);
> > +
> >  	return 0;
> >  }
> >  
> 
> Acked-by: Samuel Iglesias Gonsalvez <siglesias@...lia.com>
> 
> Greg, Would you mind picking this patch through your driver-core tree?
> Together with "ipoctal: protect only the real critical section" patch.

Ok, will do, thanks.

greg k-h
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ