summaryrefslogtreecommitdiff
path: root/nest/proto.c
diff options
context:
space:
mode:
Diffstat (limited to 'nest/proto.c')
-rw-r--r--nest/proto.c47
1 files changed, 26 insertions, 21 deletions
diff --git a/nest/proto.c b/nest/proto.c
index fc674ed5..6278580c 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -403,7 +403,6 @@ int proto_reconfig_type; /* Hack to propagate type info to pipe reconfigure hoo
static int
proto_reconfigure(struct proto *p, struct proto_config *oc, struct proto_config *nc, int type)
{
- struct announce_hook *ah = p->main_ahook;
/* If the protocol is DOWN, we just restart it */
if (p->proto_state == PS_DOWN)
return 0;
@@ -435,31 +434,16 @@ proto_reconfigure(struct proto *p, struct proto_config *oc, struct proto_config
/* Update filters and limits in the main announce hook
Note that this also resets limit state */
- if (ah)
- {
+ if (p->main_ahook)
+ {
+ struct announce_hook *ah = p->main_ahook;
ah->in_filter = nc->in_filter;
ah->out_filter = nc->out_filter;
ah->rx_limit = nc->rx_limit;
ah->in_limit = nc->in_limit;
ah->out_limit = nc->out_limit;
ah->in_keep_filtered = nc->in_keep_filtered;
-
- if (p->proto_state == PS_UP) /* Recheck export/import/receive limit */
- {
- struct proto_stats *stats = ah->stats;
- struct proto_limit *l = ah->in_limit;
- u32 all_routes = stats->imp_routes + stats->filt_routes;
-
- if (l && (stats->imp_routes >= l->limit)) proto_notify_limit(ah, l, PLD_IN, stats->imp_routes);
-
- l = ah->rx_limit;
-
- if (l && ( all_routes >= l->limit)) proto_notify_limit(ah, l, PLD_RX, all_routes );
-
- l = ah->out_limit;
-
- if (l && ( stats->exp_routes >= l->limit)) proto_notify_limit(ah, l, PLD_OUT, stats->exp_routes);
- }
+ proto_verify_limits(ah);
}
/* Update routes when filters changed. If the protocol in not UP,
@@ -1198,11 +1182,32 @@ proto_notify_limit(struct announce_hook *ah, struct proto_limit *l, int dir, u32
case PLA_RESTART:
case PLA_DISABLE:
l->state = PLS_BLOCKED;
- proto_schedule_down(p, l->action == PLA_RESTART, dir_down[dir]);
+ if (p->proto_state == PS_UP)
+ proto_schedule_down(p, l->action == PLA_RESTART, dir_down[dir]);
break;
}
}
+void
+proto_verify_limits(struct announce_hook *ah)
+{
+ struct proto_limit *l;
+ struct proto_stats *stats = ah->stats;
+ u32 all_routes = stats->imp_routes + stats->filt_routes;
+
+ l = ah->rx_limit;
+ if (l && (all_routes > l->limit))
+ proto_notify_limit(ah, l, PLD_RX, all_routes);
+
+ l = ah->in_limit;
+ if (l && (stats->imp_routes > l->limit))
+ proto_notify_limit(ah, l, PLD_IN, stats->imp_routes);
+
+ l = ah->out_limit;
+ if (l && (stats->exp_routes > l->limit))
+ proto_notify_limit(ah, l, PLD_OUT, stats->exp_routes);
+}
+
static void
proto_want_core_up(struct proto *p)