summaryrefslogtreecommitdiff
path: root/net/sctp/ulpqueue.c
diff options
context:
space:
mode:
authorSridhar Samudrala <sri@us.ibm.com>2003-03-02 23:14:00 -0800
committerSridhar Samudrala <sri@us.ibm.com>2003-03-02 23:14:00 -0800
commitbf9539992ec2eaa4a11b2b7a3cc04ee2fe56f643 (patch)
tree8a9bdab94f2ea52fd8cc87dc2e4b0e2beb22d498 /net/sctp/ulpqueue.c
parent088e723fb4660d0b0f33429cfac10300b0b45fb3 (diff)
[SCTP] accept() support for TCP-style SCTP sockets.
Diffstat (limited to 'net/sctp/ulpqueue.c')
-rw-r--r--net/sctp/ulpqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c
index 96fdd8afbbb6..dd14e7554d97 100644
--- a/net/sctp/ulpqueue.c
+++ b/net/sctp/ulpqueue.c
@@ -230,7 +230,7 @@ int sctp_ulpq_tail_event(struct sctp_ulpq *ulpq, struct sctp_ulpevent *event)
sctp_ulpq_clear_pd(ulpq);
if (queue == &sk->receive_queue)
- wake_up_interruptible(sk->sleep);
+ sk->data_ready(sk, 0);
return 1;
out_free:
@@ -790,5 +790,5 @@ void sctp_ulpq_abort_pd(struct sctp_ulpq *ulpq, int priority)
/* If there is data waiting, send it up the socket now. */
if (sctp_ulpq_clear_pd(ulpq) || ev)
- wake_up_interruptible(sk->sleep);
+ sk->data_ready(sk, 0);
}