Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 May 2021 07:31:02 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 4abc8e0a7335 - stable/13 - ttydev_write: prevent stops while terminal is busied
Message-ID:  <202105250731.14P7V2hH082574@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=4abc8e0a7335e2e79e3bb03eaed660ddc9c72bba

commit 4abc8e0a7335e2e79e3bb03eaed660ddc9c72bba
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-05-13 01:35:06 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-05-25 07:15:51 +0000

    ttydev_write: prevent stops while terminal is busied
    
    PR:     255816
    
    (cherry picked from commit 8cf912b017a04a2eec01fbaa1f7b9ef556403ede)
---
 sys/kern/tty.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index 00b4df675311..8700eb8f9ef1 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -525,7 +525,7 @@ static int
 ttydev_write(struct cdev *dev, struct uio *uio, int ioflag)
 {
 	struct tty *tp = dev->si_drv1;
-	int error;
+	int defer, error;
 
 	error = ttydev_enter(tp);
 	if (error)
@@ -549,7 +549,9 @@ ttydev_write(struct cdev *dev, struct uio *uio, int ioflag)
 		}
 
 		tp->t_flags |= TF_BUSY_OUT;
+		defer = sigdeferstop(SIGDEFERSTOP_ERESTART);
 		error = ttydisc_write(tp, uio, ioflag);
+		sigallowstop(defer);
 		tp->t_flags &= ~TF_BUSY_OUT;
 		cv_signal(&tp->t_outserwait);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105250731.14P7V2hH082574>