mariadb/storage/innobase/fil
Thirunarayanan Balathandayuthapani 6892722577 MDEV-38271 Server hangs during concurrent set innodb_encryption_threads
Problem:
=======
 - Multiple user threads waits for all encryption threads to start
before returing the control to user. But in fil_crypt_thread(),
InnoDB signals that thread is started after incrementing
srv_n_fil_crypt_threads_started variable. For multiple waiters,
pthread_cond_broadcast() would be more appropriate as
it wakes all waiting threads.

Solution:
========
fil_crypt_thread(): Use pthread_cond_broadcast instead of
pthread_cond_signal(fil_crypt_cond) to wake multiple waiter
threads
2025-12-22 14:22:57 +05:30
..
fil0crypt.cc MDEV-38271 Server hangs during concurrent set innodb_encryption_threads 2025-12-22 14:22:57 +05:30
fil0fil.cc MDEV-37755 fil_space_t::drop() doesn't remove space from fil_system.named_spaces 2025-11-10 13:37:14 +03:00
fil0pagecompress.cc MDEV-33095 innodb_flush_method=O_DIRECT creates excessive errors on Solaris 2024-01-19 15:34:33 +11:00