Hi Jon,

 

Do you think below behavior of tipc_node_calculate_timer correct whether or not:

 

Step 0:

tipc_node_create:

n->keepalive_intv = U32_MAX

 

Step 1:

Link up with tolerance default 1500ms

 

 

tipc_node_calculate_timer:

n->keepalive_intv = 375ms;

 

Step 2:

Setting tolerance for link to 500ms

 

tipc_node_calculate_timer:

n->keepalive_intv = 125ms;

 

Step 3:

Setting tolerance for link back to default 1500ms

 

tipc_node_calculate_timer:

n->keepalive_intv = 125ms;

 

Step 4: 

Increase tolerance to 9000ms

 

tipc_node_calculate_timer:

n->keepalive_intv = 125ms;

 

At result, more STATE_MSG sent out than expected within short time when 
increasing tolerance if system is running with heavy
traffic.

 

Regards,

Hoang


_______________________________________________
tipc-discussion mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tipc-discussion

Reply via email to