]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit49dde45d774adfc9084a1bb469f403f0006d8b48
treec9cd81d9f5ddf626822d059e55f4c4691668de50
parentd74f8109fef0f2fa5d4ba469cfd8c313dbb56962
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