Commit d84d1b3b authored by Jon Maloy's avatar Jon Maloy Committed by David S. Miller

tipc: simplify small window members' sorting algorithm

We simplify the sorting algorithm in tipc_update_member(). We also make
the remaining conditional call to this function unconditional, since the
same condition now is tested for inside the said function.
Acked-by: default avatarYing Xue <ying.xue@windriver.com>
Signed-off-by: default avatarJon Maloy <jon.maloy@ericsson.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 38266ca1
...@@ -355,12 +355,10 @@ void tipc_group_update_member(struct tipc_member *m, int len) ...@@ -355,12 +355,10 @@ void tipc_group_update_member(struct tipc_member *m, int len)
/* Sort member into small_window members' list */ /* Sort member into small_window members' list */
list_for_each_entry_safe(_m, tmp, &grp->small_win, small_win) { list_for_each_entry_safe(_m, tmp, &grp->small_win, small_win) {
if (m->window > _m->window) if (_m->window > m->window)
continue; break;
list_add_tail(&m->small_win, &_m->small_win);
return;
} }
list_add_tail(&m->small_win, &grp->small_win); list_add_tail(&m->small_win, &_m->small_win);
} }
void tipc_group_update_bc_members(struct tipc_group *grp, int len, bool ack) void tipc_group_update_bc_members(struct tipc_group *grp, int len, bool ack)
...@@ -837,10 +835,7 @@ void tipc_group_member_evt(struct tipc_group *grp, ...@@ -837,10 +835,7 @@ void tipc_group_member_evt(struct tipc_group *grp,
m->instance = instance; m->instance = instance;
TIPC_SKB_CB(skb)->orig_member = m->instance; TIPC_SKB_CB(skb)->orig_member = m->instance;
tipc_group_proto_xmit(grp, m, GRP_JOIN_MSG, xmitq); tipc_group_proto_xmit(grp, m, GRP_JOIN_MSG, xmitq);
if (m->window < ADV_IDLE)
tipc_group_update_member(m, 0); tipc_group_update_member(m, 0);
else
list_del_init(&m->small_win);
} else if (event == TIPC_WITHDRAWN) { } else if (event == TIPC_WITHDRAWN) {
if (!m) if (!m)
goto drop; goto drop;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment