summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authordd <dd@FreeBSD.org>2001-06-05 05:07:53 +0000
committerdd <dd@FreeBSD.org>2001-06-05 05:07:53 +0000
commit1c7d10ac212524770402a15a5f6d74a2059739a3 (patch)
tree75c34459ecb4639c4c3c4658f6ab0f8b600e9e92 /sys/kern
parentc35e39a5cb76762674f18c71f49d768bf548b7c2 (diff)
downloadFreeBSD-src-1c7d10ac212524770402a15a5f6d74a2059739a3.zip
FreeBSD-src-1c7d10ac212524770402a15a5f6d74a2059739a3.tar.gz
Add a line discipline close routine which restores some functionality
I accidently nuked in rev. 1.54. Also rework the error handling in snplwrite a little.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/tty_snoop.c26
1 files changed, 21 insertions, 5 deletions
diff --git a/sys/kern/tty_snoop.c b/sys/kern/tty_snoop.c
index 9755ef7..3a8e576 100644
--- a/sys/kern/tty_snoop.c
+++ b/sys/kern/tty_snoop.c
@@ -26,6 +26,7 @@
#include <sys/snoop.h>
#include <sys/vnode.h>
+static l_close_t snplclose;
static l_write_t snplwrite;
static d_open_t snpopen;
static d_close_t snpclose;
@@ -52,7 +53,7 @@ static struct cdevsw snp_cdevsw = {
};
static struct linesw snpdisc = {
- ttyopen, ttylclose, ttread, snplwrite,
+ ttyopen, snplclose, ttread, snplwrite,
l_nullioctl, ttyinput, ttstart, ttymodem
};
@@ -72,6 +73,22 @@ static int snp_in __P((struct snoop *snp, char *buf, int n));
static int snp_modevent __P((module_t mod, int what, void *arg));
static int
+snplclose(tp, flag)
+ struct tty *tp;
+ int flag;
+{
+ struct snoop *snp;
+ int error;
+
+ snp = tp->t_sc;
+ error = snp_down(snp);
+ if (error != 0)
+ return (error);
+ error = ttylclose(tp, flag);
+ return (error);
+}
+
+static int
snplwrite(tp, uio, flag)
struct tty *tp;
struct uio *uio;
@@ -84,12 +101,11 @@ snplwrite(tp, uio, flag)
char ibuf[512];
snp = tp->t_sc;
- error = 0;
while (uio->uio_resid > 0) {
ilen = imin(sizeof(ibuf), uio->uio_resid);
error = uiomove(ibuf, ilen, uio);
if (error != 0)
- break;
+ return (error);
snp_in(snp, ibuf, ilen);
/* Hackish, but probably the least of all evils. */
iov.iov_base = ibuf;
@@ -103,9 +119,9 @@ snplwrite(tp, uio, flag)
uio2.uio_procp = uio->uio_procp;
error = ttwrite(tp, &uio2, flag);
if (error != 0)
- break;
+ return (error);
}
- return (error);
+ return (0);
}
static struct tty *
OpenPOWER on IntegriCloud