We already had pinctrl_notify_main_thread counter, counting how many times main thread was notified by pinctrl. Through this patch, add pinctrl_notify_handler_thread, counting how many times handler thread is notified.
Signed-off-by: Xavier Simonart <[email protected]> --- controller/pinctrl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controller/pinctrl.c b/controller/pinctrl.c index 1a5407183..d607c6287 100644 --- a/controller/pinctrl.c +++ b/controller/pinctrl.c @@ -389,6 +389,7 @@ COVERAGE_DEFINE(pinctrl_drop_buffered_packets_map); COVERAGE_DEFINE(pinctrl_drop_controller_event); COVERAGE_DEFINE(pinctrl_drop_put_vport_binding); COVERAGE_DEFINE(pinctrl_notify_main_thread); +COVERAGE_DEFINE(pinctrl_notify_handler_thread); COVERAGE_DEFINE(pinctrl_total_pin_pkts); /* DNS query statistics - thread-safe coverage counters */ @@ -4005,6 +4006,7 @@ pinctrl_recv(struct rconn *swconn, const struct ofp_header *oh, static void notify_pinctrl_handler(void) { + COVERAGE_INC(pinctrl_notify_handler_thread); seq_change(pinctrl_handler_seq); } -- 2.47.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
