sctp: delay calls to sk_data_ready() as much as possible
authorMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Fri, 8 Apr 2016 19:41:28 +0000 (16:41 -0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 14 Apr 2016 03:04:44 +0000 (23:04 -0400)
commitfb586f25300f4587c7ebd097a604bf269b25bfa7
treec9cd81d9f5ddf626822d059e55f4c4691668de50
parent250eb1f8815303f71c94a5680f8e4f2dcfa25cf5
sctp: delay calls to sk_data_ready() as much as possible

Currently processing of multiple chunks in a single SCTP packet leads to
multiple calls to sk_data_ready, causing multiple wake up signals which
are costy and doesn't make it wake up any faster.

With this patch it will note that the wake up is pending and will do it
before leaving the state machine interpreter, latest place possible to
do it realiably and cleanly.

Note that sk_data_ready events are not dependent on asocs, unlike waking
up writers.

v2: series re-checked
v3: use local vars to cleanup the code, suggested by Jakub Sitnicki
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sctp/structs.h
net/sctp/sm_sideeffect.c
net/sctp/ulpqueue.c