diff options
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 ce469d648ffb..72e5b3e41cdd 100644 --- a/net/sctp/ulpqueue.c +++ b/net/sctp/ulpqueue.c | |||
@@ -264,7 +264,7 @@ int sctp_ulpq_tail_event(struct sctp_ulpq *ulpq, struct sctp_ulpevent *event) | |||
264 | sctp_ulpq_clear_pd(ulpq); | 264 | sctp_ulpq_clear_pd(ulpq); |
265 | 265 | ||
266 | if (queue == &sk->sk_receive_queue) | 266 | if (queue == &sk->sk_receive_queue) |
267 | sk->sk_data_ready(sk); | 267 | sctp_sk(sk)->pending_data_ready = 1; |
268 | return 1; | 268 | return 1; |
269 | 269 | ||
270 | out_free: | 270 | out_free: |
@@ -1140,5 +1140,5 @@ void sctp_ulpq_abort_pd(struct sctp_ulpq *ulpq, gfp_t gfp) | |||
1140 | 1140 | ||
1141 | /* If there is data waiting, send it up the socket now. */ | 1141 | /* If there is data waiting, send it up the socket now. */ |
1142 | if (sctp_ulpq_clear_pd(ulpq) || ev) | 1142 | if (sctp_ulpq_clear_pd(ulpq) || ev) |
1143 | sk->sk_data_ready(sk); | 1143 | sctp_sk(sk)->pending_data_ready = 1; |
1144 | } | 1144 | } |