aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/streams
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2001-02-15 16:34:11 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2001-02-15 16:34:11 +0000
commit608a3ce62a98c42e5d415af6d6dc98f2bf4e615b (patch)
treea9aab1f038a4aab4a0d31919948c7c964e5b85d6 /sys/dev/streams
parent2c9ba841c61cbced165336bd4e2b21be82cfdcd0 (diff)
downloadsrc-608a3ce62a98c42e5d415af6d6dc98f2bf4e615b.tar.gz
src-608a3ce62a98c42e5d415af6d6dc98f2bf4e615b.zip
Extend kqueue down to the device layer.
Backwards compatible approach suggested by: peter
Notes
Notes: svn path=/head/; revision=72521
Diffstat (limited to 'sys/dev/streams')
-rw-r--r--sys/dev/streams/streams.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/streams/streams.c b/sys/dev/streams/streams.c
index 1d779f4a9f34..8f279da0cf1b 100644
--- a/sys/dev/streams/streams.c
+++ b/sys/dev/streams/streams.c
@@ -99,7 +99,8 @@ dev_t dt_ptm, dt_arp, dt_icmp, dt_ip, dt_tcp, dt_udp, dt_rawip,
dt_unix_dgram, dt_unix_stream, dt_unix_ord_stream;
static struct fileops svr4_netops = {
- soo_read, soo_write, soo_ioctl, soo_poll, soo_stat, svr4_soo_close
+ soo_read, soo_write, soo_ioctl, soo_poll, sokqfilter,
+ soo_stat, svr4_soo_close
};
#define CDEV_MAJOR 103