summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorjdolecek <jdolecek@NetBSD.org>2002-10-23 09:10:23 +0000
committerjdolecek <jdolecek@NetBSD.org>2002-10-23 09:10:23 +0000
commite0cc03a09bef1c30376dd993f360ab80be0dc19d (patch)
tree477f28afbd457265fa9cf92b634c57d9157e13b8 /sys/dev/raidframe
parent3dae1c4857e45692b8f43fbf5e1c896b330d0b81 (diff)
merge kqueue branch into -current
kqueue provides a stateful and efficient event notification framework currently supported events include socket, file, directory, fifo, pipe, tty and device changes, and monitoring of processes and signals kqueue is supported by all writable filesystems in NetBSD tree (with exception of Coda) and all device drivers supporting poll(2) based on work done by Jonathan Lemon for FreeBSD initial NetBSD port done by Luke Mewburn and Jason Thorpe
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_netbsdkintf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c
index b713566eb4d..ca6ee6cd783 100644
--- a/sys/dev/raidframe/rf_netbsdkintf.c
+++ b/sys/dev/raidframe/rf_netbsdkintf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_netbsdkintf.c,v 1.143 2002/10/04 20:05:14 oster Exp $ */
+/* $NetBSD: rf_netbsdkintf.c,v 1.144 2002/10/23 09:13:40 jdolecek Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -114,7 +114,7 @@
***********************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.143 2002/10/04 20:05:14 oster Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.144 2002/10/23 09:13:40 jdolecek Exp $");
#include <sys/param.h>
#include <sys/errno.h>
@@ -196,7 +196,7 @@ const struct bdevsw raid_bdevsw = {
const struct cdevsw raid_cdevsw = {
raidopen, raidclose, raidread, raidwrite, raidioctl,
- nostop, notty, nopoll, nommap, D_DISK
+ nostop, notty, nopoll, nommap, nokqfilter, D_DISK
};
/*