aboutsummaryrefslogtreecommitdiff
path: root/net/sctp
diff options
context:
space:
mode:
authorGravatar Eric Dumazet <edumazet@google.com> 2016-04-29 14:16:51 -0700
committerGravatar David S. Miller <davem@davemloft.net> 2016-05-02 17:02:26 -0400
commit860fbbc343bf05a71b31555579ff4878194be01b (patch)
tree71ef7cf3e62607570fdb1cde52615703d220a30b /net/sctp
parentudp: prepare for non BH masking at backlog processing (diff)
downloadlinux-860fbbc343bf05a71b31555579ff4878194be01b.tar.gz
linux-860fbbc343bf05a71b31555579ff4878194be01b.tar.bz2
linux-860fbbc343bf05a71b31555579ff4878194be01b.zip
sctp: prepare for socket backlog behavior change
sctp_inq_push() will soon be called without BH being blocked when generic socket code flushes the socket backlog. It is very possible SCTP can be converted to not rely on BH, but this needs to be done by SCTP experts. Signed-off-by: Eric Dumazet <edumazet@google.com> Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r--net/sctp/inqueue.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sctp/inqueue.c b/net/sctp/inqueue.c
index b335ffcef0b9..9d87bba0ff1d 100644
--- a/net/sctp/inqueue.c
+++ b/net/sctp/inqueue.c
@@ -89,10 +89,12 @@ void sctp_inq_push(struct sctp_inq *q, struct sctp_chunk *chunk)
* Eventually, we should clean up inqueue to not rely
* on the BH related data structures.
*/
+ local_bh_disable();
list_add_tail(&chunk->list, &q->in_chunk_list);
if (chunk->asoc)
chunk->asoc->stats.ipackets++;
q->immediate.func(&q->immediate);
+ local_bh_enable();
}
/* Peek at the next chunk on the inqeue. */