s390/3270: redraw screen on unsolicited device end
authorMartin Schwidefsky <schwidefsky@de.ibm.com>
Wed, 19 Aug 2015 14:50:10 +0000 (16:50 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Wed, 26 Aug 2015 15:19:49 +0000 (17:19 +0200)
If a 3270 terminal is disconnected and later reconnected again,
it gets an unsolicited device end. This is currently ignored and
you have to hit the clear key to get the screen redrawn.
Add an automatic full redraw of the screen for this case.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/char/con3270.c
drivers/s390/char/tty3270.c

index 75ffe9980c3e1cb8e141c6e29d01cef98aaf862f..7c511add5aa7d884d8082398198b1aa92a61dc84 100644 (file)
@@ -413,6 +413,10 @@ con3270_irq(struct con3270 *cp, struct raw3270_request *rq, struct irb *irb)
                else
                        /* Normal end. Copy residual count. */
                        rq->rescnt = irb->scsw.cmd.count;
+       } else if (irb->scsw.cmd.dstat & DEV_STAT_DEV_END) {
+               /* Interrupt without an outstanding request -> update all */
+               cp->update_flags = CON_UPDATE_ALL;
+               con3270_set_timer(cp, 1);
        }
        return RAW3270_IO_DONE;
 }
index e91b89dc6d1f61878e9191c8f66b7a90e32acd44..e96fc7fd9498458b5506789f4b900b813885adda 100644 (file)
@@ -659,6 +659,10 @@ tty3270_irq(struct tty3270 *tp, struct raw3270_request *rq, struct irb *irb)
                else
                        /* Normal end. Copy residual count. */
                        rq->rescnt = irb->scsw.cmd.count;
+       } else if (irb->scsw.cmd.dstat & DEV_STAT_DEV_END) {
+               /* Interrupt without an outstanding request -> update all */
+               tp->update_flags = TTY_UPDATE_ALL;
+               tty3270_set_timer(tp, 1);
        }
        return RAW3270_IO_DONE;
 }
This page took 0.026633 seconds and 5 git commands to generate.