summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-05-15 22:18:11 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-05-15 22:18:11 +0300
commitc8dd41178152c7e82b41c10546d2cffd8a84b441 (patch)
tree2cad631fbe697fc72c1e6c70cbc2668e302a5841
parentad6171b91cac33e70bb28fa6865488b2c65e858c (diff)
parentdcb0bd59cedbd2e8fa4220986863549d614fb05e (diff)
downloadmariadb-git-c8dd41178152c7e82b41c10546d2cffd8a84b441.tar.gz
MDEV-22544 Inconsistent and Incorrect rw-lock stats
The rw_lock_stats were incorrectly updated. While global statistics have limited usefulness, we cannot remove them from a GA version. This contribution is slightly improving performance in write workloads.
-rw-r--r--storage/innobase/sync/sync0rw.cc31
1 files changed, 22 insertions, 9 deletions
diff --git a/storage/innobase/sync/sync0rw.cc b/storage/innobase/sync/sync0rw.cc
index df710a53cf6..b46126bde58 100644
--- a/storage/innobase/sync/sync0rw.cc
+++ b/storage/innobase/sync/sync0rw.cc
@@ -293,10 +293,13 @@ rw_lock_s_lock_spin(
ut_ad(rw_lock_validate(lock));
+ rw_lock_stats.rw_s_spin_wait_count.inc();
+
lock_loop:
/* Spin waiting for the writer field to become free */
HMT_low();
+ ulint j = i;
while (i < srv_n_spin_wait_rounds && lock->lock_word <= 0) {
ut_delay(srv_spin_wait_delay);
i++;
@@ -307,7 +310,7 @@ lock_loop:
os_thread_yield();
}
- ++spin_count;
+ spin_count += lint(i - j);
/* We try once again to obtain the lock */
if (rw_lock_s_lock_low(lock, pass, file_name, line)) {
@@ -428,7 +431,7 @@ rw_lock_x_lock_wait_func(
HMT_medium();
/* If there is still a reader, then go to sleep.*/
- ++n_spins;
+ n_spins += i;
sync_cell_t* cell;
@@ -654,6 +657,12 @@ rw_lock_x_lock_func(
ut_ad(rw_lock_validate(lock));
ut_ad(!rw_lock_own(lock, RW_LOCK_S));
+ if (rw_lock_x_lock_low(lock, pass, file_name, line)) {
+ /* Locking succeeded */
+ return;
+ }
+ rw_lock_stats.rw_x_spin_wait_count.inc();
+
lock_loop:
if (rw_lock_x_lock_low(lock, pass, file_name, line)) {
@@ -673,6 +682,7 @@ lock_loop:
/* Spin waiting for the lock_word to become free */
HMT_low();
+ ulint j = i;
while (i < srv_n_spin_wait_rounds
&& lock->lock_word <= X_LOCK_HALF_DECR) {
@@ -681,7 +691,7 @@ lock_loop:
}
HMT_medium();
- spin_count += i;
+ spin_count += lint(i - j);
if (i >= srv_n_spin_wait_rounds) {
@@ -749,11 +759,17 @@ rw_lock_sx_lock_func(
sync_array_t* sync_arr;
ulint spin_count = 0;
uint64_t count_os_wait = 0;
- ulint spin_wait_count = 0;
ut_ad(rw_lock_validate(lock));
ut_ad(!rw_lock_own(lock, RW_LOCK_S));
+ if (rw_lock_sx_lock_low(lock, pass, file_name, line)) {
+ /* Locking succeeded */
+ return;
+ }
+
+ rw_lock_stats.rw_sx_spin_wait_count.inc();
+
lock_loop:
if (rw_lock_sx_lock_low(lock, pass, file_name, line)) {
@@ -765,16 +781,14 @@ lock_loop:
}
rw_lock_stats.rw_sx_spin_round_count.add(spin_count);
- rw_lock_stats.rw_sx_spin_wait_count.add(spin_wait_count);
/* Locking succeeded */
return;
} else {
- ++spin_wait_count;
-
/* Spin waiting for the lock_word to become free */
+ ulint j = i;
while (i < srv_n_spin_wait_rounds
&& lock->lock_word <= X_LOCK_HALF_DECR) {
@@ -782,7 +796,7 @@ lock_loop:
i++;
}
- spin_count += i;
+ spin_count += lint(i - j);
if (i >= srv_n_spin_wait_rounds) {
@@ -814,7 +828,6 @@ lock_loop:
}
rw_lock_stats.rw_sx_spin_round_count.add(spin_count);
- rw_lock_stats.rw_sx_spin_wait_count.add(spin_wait_count);
/* Locking succeeded */
return;