aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_ksocket.c
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2005-08-25 07:21:15 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2005-08-25 07:21:15 +0000
commitd7f56eababee79b0b2b9d0b42437c193745c6fd4 (patch)
tree95b5e909c7ff5a3cbc385f85ff8524624048ccf7 /sys/netgraph/ng_ksocket.c
parent4053cae340ce89b07766429db0add8d4d1ebdc6c (diff)
Notes
Diffstat (limited to 'sys/netgraph/ng_ksocket.c')
-rw-r--r--sys/netgraph/ng_ksocket.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netgraph/ng_ksocket.c b/sys/netgraph/ng_ksocket.c
index ab021fc6f1dc..a4fbdfe2a28e 100644
--- a/sys/netgraph/ng_ksocket.c
+++ b/sys/netgraph/ng_ksocket.c
@@ -1001,8 +1001,6 @@ ng_ksocket_disconnect(hook_p hook)
* the request has at least been done, but the 'so' may not be so lucky.
* handle this by checking the validity of the node in the target function
* before dereferencing the socket pointer.
- *
- * To decouple stack, we use queue version of ng_send_fn().
*/
static void
@@ -1013,7 +1011,7 @@ ng_ksocket_incoming(struct socket *so, void *arg, int waitflag)
wait = (waitflag & M_WAITOK) ? NG_WAITOK : 0;
ng_send_fn1(node, NULL, &ng_ksocket_incoming2, so, waitflag,
- wait | NG_QUEUE);
+ wait);
}