Module Name: src
Committed By: ad
Date: Wed Apr 8 20:58:41 UTC 2009
Modified Files:
src/sys/kern: sys_socket.c
Log Message:
Patch out soo_drain until I fix it to work correctly.
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/kern/sys_socket.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/sys_socket.c
diff -u src/sys/kern/sys_socket.c:1.59 src/sys/kern/sys_socket.c:1.60
--- src/sys/kern/sys_socket.c:1.59 Sat Apr 4 10:12:51 2009
+++ src/sys/kern/sys_socket.c Wed Apr 8 20:58:40 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_socket.c,v 1.59 2009/04/04 10:12:51 ad Exp $ */
+/* $NetBSD: sys_socket.c,v 1.60 2009/04/08 20:58:40 ad Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_socket.c,v 1.59 2009/04/04 10:12:51 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_socket.c,v 1.60 2009/04/08 20:58:40 ad Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -89,7 +89,7 @@
.fo_stat = soo_stat,
.fo_close = soo_close,
.fo_kqfilter = soo_kqfilter,
- .fo_drain = soo_drain,
+ .fo_drain = fnullop_drain, /* soo_drain, */
};
/* ARGSUSED */