From 7376287554e30aa0b74136bf6c16566f6bda80cd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 8 Apr 2022 14:27:25 +0200 Subject: Fix race in phase lock contention counting --- libbuild2/context.cxx | 12 ++++++------ libbuild2/context.hxx | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) (limited to 'libbuild2') diff --git a/libbuild2/context.cxx b/libbuild2/context.cxx index d460fa7..8052716 100644 --- a/libbuild2/context.cxx +++ b/libbuild2/context.cxx @@ -765,7 +765,7 @@ namespace build2 } else if (ctx_.phase != n) { - ++contention; + ++contention; // Protected by m_. ctx_.sched.deactivate (false /* external */); for (; ctx_.phase != n; v->wait (l)) ; @@ -783,11 +783,11 @@ namespace build2 { if (!lm_.try_lock ()) { - ++contention; - ctx_.sched.deactivate (false /* external */); lm_.lock (); ctx_.sched.activate (false /* external */); + + ++contention_load; // Protected by lm_. } r = !fail_; // Re-query. } @@ -905,7 +905,7 @@ namespace build2 } else // phase != n { - ++contention; + ++contention; // Protected by m_. ctx_.sched.deactivate (false /* external */); for (; ctx_.phase != n; v->wait (l)) ; @@ -919,11 +919,11 @@ namespace build2 { if (!lm_.try_lock ()) { - ++contention; - ctx_.sched.deactivate (false /* external */); lm_.lock (); ctx_.sched.activate (false /* external */); + + ++contention_load; // Protected by lm_. } r = !fail_; // Re-query. } diff --git a/libbuild2/context.hxx b/libbuild2/context.hxx index 0595413..fbdf9b8 100644 --- a/libbuild2/context.hxx +++ b/libbuild2/context.hxx @@ -46,7 +46,8 @@ namespace build2 // Statistics. // public: - size_t contention = 0; // # of contentious phase (re)locks. + size_t contention = 0; // # of contentious phase (re)locks. + size_t contention_load = 0; // # of contentious load phase locks. private: friend class context; -- cgit v1.1