Re: [PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-13 Thread Greg KH
On Tue, Mar 13, 2012 at 07:20:11PM +0100, Laurent Pinchart wrote: > Hi Greg, > > On Tuesday 13 March 2012 11:07:53 Greg KH wrote: > > On Sun, Mar 11, 2012 at 01:07:43PM +0100, Laurent Pinchart wrote: > > > The HS/VS interrupt handler needs to access the pipeline object. It > > > erronously tries t

Re: [PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-13 Thread Laurent Pinchart
Hi Greg, On Tuesday 13 March 2012 11:07:53 Greg KH wrote: > On Sun, Mar 11, 2012 at 01:07:43PM +0100, Laurent Pinchart wrote: > > The HS/VS interrupt handler needs to access the pipeline object. It > > erronously tries to get it from the CCDC output video node, which isn't > > necessarily included

Re: [PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-13 Thread Greg KH
On Sun, Mar 11, 2012 at 01:07:43PM +0100, Laurent Pinchart wrote: > The HS/VS interrupt handler needs to access the pipeline object. It > erronously tries to get it from the CCDC output video node, which isn't > necessarily included in the pipeline. This leads to a NULL pointer > dereference. > >

Re: [PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-11 Thread Laurent Pinchart
Hi Sekhar, On Sunday 11 March 2012 11:59:12 Nori, Sekhar wrote: > On Sun, Mar 11, 2012 at 17:20:08, Laurent Pinchart wrote: > > The HS/VS interrupt handler needs to access the pipeline object. It > > erronously tries to get it from the CCDC output video node, which isn't > > necessarily included i

[PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-11 Thread Laurent Pinchart
The HS/VS interrupt handler needs to access the pipeline object. It erronously tries to get it from the CCDC output video node, which isn't necessarily included in the pipeline. This leads to a NULL pointer dereference. Fix the bug by getting the pipeline object from the CCDC subdev entity. The u

RE: [PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-11 Thread Nori, Sekhar
Hi Laurent, On Sun, Mar 11, 2012 at 17:20:08, Laurent Pinchart wrote: > The HS/VS interrupt handler needs to access the pipeline object. It > erronously tries to get it from the CCDC output video node, which isn't > necessarily included in the pipeline. This leads to a NULL pointer > dereference.

[PATCH - stable v3.2] omap3isp: ccdc: Fix crash in HS/VS interrupt handler

2012-03-11 Thread Laurent Pinchart
The HS/VS interrupt handler needs to access the pipeline object. It erronously tries to get it from the CCDC output video node, which isn't necessarily included in the pipeline. This leads to a NULL pointer dereference. Fix the bug by getting the pipeline object from the CCDC subdev entity. Repor