Re: [PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-06-17 Thread Greg KH
On Mon, Jun 17, 2013 at 10:38:59PM +0100, Djalal Harouni wrote: > (Cc'ed Kees and Greg) Why me? confused... -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-06-17 Thread Djalal Harouni
(Cc'ed Kees and Greg) Hi Dmitry, On Fri, May 10, 2013 at 04:32:48PM +0300, Ferruh Yigit wrote: > memcpy param is wrong because of offset in bl_cmd, this may corrupt the > stack which may cause a crash. > > Tested-by: Ferruh Yigit on TMA300-DVK > Signed-off-by: Ferruh Yigit > --- >

Re: [PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-06-17 Thread Djalal Harouni
(Cc'ed Kees and Greg) Hi Dmitry, On Fri, May 10, 2013 at 04:32:48PM +0300, Ferruh Yigit wrote: memcpy param is wrong because of offset in bl_cmd, this may corrupt the stack which may cause a crash. Tested-by: Ferruh Yigit f...@cypress.com on TMA300-DVK Signed-off-by: Ferruh Yigit

Re: [PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-06-17 Thread Greg KH
On Mon, Jun 17, 2013 at 10:38:59PM +0100, Djalal Harouni wrote: (Cc'ed Kees and Greg) Why me? confused... -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-05-10 Thread Javier Martinez Canillas
Hi Ferruh, On Fri, May 10, 2013 at 3:32 PM, Ferruh Yigit wrote: > memcpy param is wrong because of offset in bl_cmd, this may corrupt the > stack which may cause a crash. > > Tested-by: Ferruh Yigit on TMA300-DVK > Signed-off-by: Ferruh Yigit Nice catch, thanks for fixing it Acked-by: Javier

[PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-05-10 Thread Ferruh Yigit
memcpy param is wrong because of offset in bl_cmd, this may corrupt the stack which may cause a crash. Tested-by: Ferruh Yigit on TMA300-DVK Signed-off-by: Ferruh Yigit --- drivers/input/touchscreen/cyttsp_core.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-05-10 Thread Ferruh Yigit
memcpy param is wrong because of offset in bl_cmd, this may corrupt the stack which may cause a crash. Tested-by: Ferruh Yigit f...@cypress.com on TMA300-DVK Signed-off-by: Ferruh Yigit f...@cypress.com --- drivers/input/touchscreen/cyttsp_core.c |2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH 1/2] Input: cyttsp - fix memcpy size param

2013-05-10 Thread Javier Martinez Canillas
Hi Ferruh, On Fri, May 10, 2013 at 3:32 PM, Ferruh Yigit f...@cypress.com wrote: memcpy param is wrong because of offset in bl_cmd, this may corrupt the stack which may cause a crash. Tested-by: Ferruh Yigit f...@cypress.com on TMA300-DVK Signed-off-by: Ferruh Yigit f...@cypress.com Nice