]> 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)
commit2d7d2e7327103d6194a786f0f760146931a12a1e
treec9cd81d9f5ddf626822d059e55f4c4691668de50
parent0489f80d859cd2f60b0fae5ef47cdaa80534a79c
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