Re: [patch] tty: mxser: forever loops on error

2013-04-09 Thread Dan Carpenter
On Tue, Apr 09, 2013 at 09:50:35AM +0400, Alexey Khoroshilov wrote: > Hi Dan, > > Thank you for the patch. > > We are also trying to fix the issue: > https://lkml.org/lkml/2013/2/19/29 > https://lkml.org/lkml/2013/4/8/55 > > and the fix is finally in Greg's tty git tree since yesterday: >

Re: [patch] tty: mxser: forever loops on error

2013-04-09 Thread Dan Carpenter
On Tue, Apr 09, 2013 at 09:50:35AM +0400, Alexey Khoroshilov wrote: Hi Dan, Thank you for the patch. We are also trying to fix the issue: https://lkml.org/lkml/2013/2/19/29 https://lkml.org/lkml/2013/4/8/55 and the fix is finally in Greg's tty git tree since yesterday:

Re: [patch] tty: mxser: forever loops on error

2013-04-08 Thread Alexey Khoroshilov
Hi Dan, Thank you for the patch. We are also trying to fix the issue: https://lkml.org/lkml/2013/2/19/29 https://lkml.org/lkml/2013/4/8/55 and the fix is finally in Greg's tty git tree since yesterday: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git (tty-linus branch). Best

[patch] tty: mxser: forever loops on error

2013-04-08 Thread Dan Carpenter
There were a couple signedness bugs decrementing "i" which would lead to a forever loops. I've made a couple other variables signed as well because they are all related array offsets and it would be weird if they weren't the same type. Signed-off-by: Dan Carpenter diff --git

[patch] tty: mxser: forever loops on error

2013-04-08 Thread Dan Carpenter
There were a couple signedness bugs decrementing i which would lead to a forever loops. I've made a couple other variables signed as well because they are all related array offsets and it would be weird if they weren't the same type. Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff

Re: [patch] tty: mxser: forever loops on error

2013-04-08 Thread Alexey Khoroshilov
Hi Dan, Thank you for the patch. We are also trying to fix the issue: https://lkml.org/lkml/2013/2/19/29 https://lkml.org/lkml/2013/4/8/55 and the fix is finally in Greg's tty git tree since yesterday: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git (tty-linus branch). Best