diff options
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r-- | net/tipc/link.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index 1c5c53a81531..3c1c28cdbaa4 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c | |||
@@ -2617,6 +2617,9 @@ static void link_check_defragm_bufs(struct link *l_ptr) | |||
2617 | 2617 | ||
2618 | static void link_set_supervision_props(struct link *l_ptr, u32 tolerance) | 2618 | static void link_set_supervision_props(struct link *l_ptr, u32 tolerance) |
2619 | { | 2619 | { |
2620 | if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL)) | ||
2621 | return; | ||
2622 | |||
2620 | l_ptr->tolerance = tolerance; | 2623 | l_ptr->tolerance = tolerance; |
2621 | l_ptr->continuity_interval = | 2624 | l_ptr->continuity_interval = |
2622 | ((tolerance / 4) > 500) ? 500 : tolerance / 4; | 2625 | ((tolerance / 4) > 500) ? 500 : tolerance / 4; |