* [PATCH v4] tty: Add driver unthrottle in ioctl(...,TCFLSH,..).
@ 2012-11-27 6:14 Ilya Zykov
2012-11-27 17:24 ` Greg Kroah-Hartman
0 siblings, 1 reply; 5+ messages in thread
From: Ilya Zykov @ 2012-11-27 6:14 UTC (permalink / raw)
To: Alan Cox; +Cc: Greg Kroah-Hartman, linux-kernel, linux-serial, ilya
Sorry. More correct.
Regression 'tty: fix "IRQ45: nobody cared"'
Regression commit 7b292b4bf9a9d6098440d85616d6ca4c608b8304
Function reset_buffer_flags() also invoked during the ioctl(...,TCFLSH,..).
At the time of request we can have full buffers and throttled driver too.
If we don't unthrottle driver, we can get forever throttled driver, because,
after request, we will have empty buffers and throttled driver and
there is no place to unthrottle driver.
It simple reproduce with "pty" pair then one side sleep on tty->write_wait,
and other side do ioctl(...,TCFLSH,..). Then there is no place to do writers wake up.
Signed-off-by: Ilya Zykov <ilya@ilyx.ru>
---
diff --git a/drivers/tty/tty_ioctl.c b/drivers/tty/tty_ioctl.c
index 12b1fa0..4071a8f 100644
--- a/drivers/tty/tty_ioctl.c
+++ b/drivers/tty/tty_ioctl.c
@@ -1096,12 +1096,16 @@ int tty_perform_flush(struct tty_struct *tty, unsigned long arg)
ld = tty_ldisc_ref_wait(tty);
switch (arg) {
case TCIFLUSH:
- if (ld && ld->ops->flush_buffer)
+ if (ld && ld->ops->flush_buffer) {
ld->ops->flush_buffer(tty);
+ tty_unthrottle(tty);
+ }
break;
case TCIOFLUSH:
- if (ld && ld->ops->flush_buffer)
+ if (ld && ld->ops->flush_buffer) {
ld->ops->flush_buffer(tty);
+ tty_unthrottle(tty);
+ }
/* fall through */
case TCOFLUSH:
tty_driver_flush_buffer(tty);
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v4] tty: Add driver unthrottle in ioctl(...,TCFLSH,..).
2012-11-27 6:14 [PATCH v4] tty: Add driver unthrottle in ioctl(...,TCFLSH,..) Ilya Zykov
@ 2012-11-27 17:24 ` Greg Kroah-Hartman
2012-11-27 18:46 ` Ilya Zykov
0 siblings, 1 reply; 5+ messages in thread
From: Greg Kroah-Hartman @ 2012-11-27 17:24 UTC (permalink / raw)
To: Ilya Zykov; +Cc: Alan Cox, linux-kernel, linux-serial
On Tue, Nov 27, 2012 at 10:14:33AM +0400, Ilya Zykov wrote:
> Sorry. More correct.
In what way? Should I wait for the 6th version? :)
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v4] tty: Add driver unthrottle in ioctl(...,TCFLSH,..).
2012-11-27 17:24 ` Greg Kroah-Hartman
@ 2012-11-27 18:46 ` Ilya Zykov
2012-11-27 19:32 ` Alan Cox
0 siblings, 1 reply; 5+ messages in thread
From: Ilya Zykov @ 2012-11-27 18:46 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Alan Cox, linux-serial, linux-kernel, ilya
On 27.11.2012 21:24, Greg Kroah-Hartman wrote:
> On Tue, Nov 27, 2012 at 10:14:33AM +0400, Ilya Zykov wrote:
>> Sorry. More correct.
>
> In what way? Should I wait for the 6th version? :)
>
> thanks,
>
> greg k-h
>
No, if only you will accept:
[PATCH]tty: Incorrect use tty_ldisc_flush() in TTY drivers.
It can be done another way, simple revert:
'tty: fix "IRQ45: nobody cared"'
commit 7b292b4bf9a9d6098440d85616d6ca4c608b8304
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v4] tty: Add driver unthrottle in ioctl(...,TCFLSH,..).
2012-11-27 18:46 ` Ilya Zykov
@ 2012-11-27 19:32 ` Alan Cox
2013-01-16 9:07 ` [PATCH] " Ilya Zykov
0 siblings, 1 reply; 5+ messages in thread
From: Alan Cox @ 2012-11-27 19:32 UTC (permalink / raw)
To: Ilya Zykov; +Cc: Greg Kroah-Hartman, Alan Cox, linux-serial, linux-kernel
> No, if only you will accept:
> [PATCH]tty: Incorrect use tty_ldisc_flush() in TTY drivers.
>
> It can be done another way, simple revert:
> 'tty: fix "IRQ45: nobody cared"'
> commit 7b292b4bf9a9d6098440d85616d6ca4c608b8304
NAK that revert - that swaps a minor glitch you've discovered that does
want fixing for a nasty bug.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] tty: Add driver unthrottle in ioctl(...,TCFLSH,..).
2012-11-27 19:32 ` Alan Cox
@ 2013-01-16 9:07 ` Ilya Zykov
0 siblings, 0 replies; 5+ messages in thread
From: Ilya Zykov @ 2013-01-16 9:07 UTC (permalink / raw)
To: Alan Cox; +Cc: Greg Kroah-Hartman, Alan Cox, linux-serial, linux-kernel
Regression 'tty: fix "IRQ45: nobody cared"'
Regression commit 7b292b4bf9a9d6098440d85616d6ca4c608b8304
Function reset_buffer_flags() also invoked during the ioctl(...,TCFLSH,..).
At the time of request we can have full buffers and throttled driver too.
If we don't unthrottle driver, we can get forever throttled driver, because,
after request, we will have empty buffers and throttled driver and
there is no place to unthrottle driver.
It simple reproduce with "pty" pair then one side sleep on tty->write_wait,
and other side do ioctl(...,TCFLSH,..). Then there is no place to do writers wake up.
Signed-off-by: Ilya Zykov <ilya@ilyx.ru>
---
drivers/tty/tty_ioctl.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/tty/tty_ioctl.c b/drivers/tty/tty_ioctl.c
index 8481b29..cc0fc52 100644
--- a/drivers/tty/tty_ioctl.c
+++ b/drivers/tty/tty_ioctl.c
@@ -1096,12 +1096,16 @@ int tty_perform_flush(struct tty_struct *tty, unsigned long arg)
ld = tty_ldisc_ref_wait(tty);
switch (arg) {
case TCIFLUSH:
- if (ld && ld->ops->flush_buffer)
+ if (ld && ld->ops->flush_buffer) {
ld->ops->flush_buffer(tty);
+ tty_unthrottle(tty);
+ }
break;
case TCIOFLUSH:
- if (ld && ld->ops->flush_buffer)
+ if (ld && ld->ops->flush_buffer) {
ld->ops->flush_buffer(tty);
+ tty_unthrottle(tty);
+ }
/* fall through */
case TCOFLUSH:
tty_driver_flush_buffer(tty);
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-01-16 9:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-27 6:14 [PATCH v4] tty: Add driver unthrottle in ioctl(...,TCFLSH,..) Ilya Zykov
2012-11-27 17:24 ` Greg Kroah-Hartman
2012-11-27 18:46 ` Ilya Zykov
2012-11-27 19:32 ` Alan Cox
2013-01-16 9:07 ` [PATCH] " Ilya Zykov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).