Tag: 54a27924237eeb9767135a423dea14a0d1b5954f

sctp: use list_move_tail instead of list_del/list_add_tail

Author: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Using list_move_tail() instead of list_del() + list_add_tail(). spatch with a semantic match is used to found this problem. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun Signed-off-by: David S. Miller — net/sctp/outqueue.c | 10 ++++—— 1 file changed, 4 insertions(+), 6 deletions(-)   diff –git a/net/sctp/outqueue.c b/net/sctp/outqueue.c index 072bf6a..d16632e 100644 — a/net/sctp/outqueue.c +++ b/net/sctp/outqueue.c @@ …

Continue reading