diff options
| author | Sridhar Samudrala <sri@us.ibm.com> | 2003-03-02 23:45:02 -0800 |
|---|---|---|
| committer | Sridhar Samudrala <sri@us.ibm.com> | 2003-03-02 23:45:02 -0800 |
| commit | 7cd485123dc7bbfd0185d5e0da4242aa9e2c7d21 (patch) | |
| tree | 208972287cc87cd040ab87bee1d3457deba52121 /net/sctp/ulpqueue.c | |
| parent | 1026ffaf60b6fe133070face187debc40c4aa3c1 (diff) | |
| parent | bf9539992ec2eaa4a11b2b7a3cc04ee2fe56f643 (diff) | |
Merge us.ibm.com:/home/sridhar/BK/lksctp-2.5.work
into us.ibm.com:/home/sridhar/BK/lksctp-2.5.63
Diffstat (limited to 'net/sctp/ulpqueue.c')
| -rw-r--r-- | net/sctp/ulpqueue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c index dd946d1abad9..4e07569011d4 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: @@ -787,5 +787,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); } |
