1. 21 Oct, 2015 1 commit
  2. 20 Oct, 2015 1 commit
    • Jan Lindström's avatar
      MDEV-8869: Potential lock_sys->mutex deadlock · f3e36246
      Jan Lindström authored
      Analysis: We are alreading holing lock_sys mutex when we call thd::awake.
      This could lead mutex deadlock if trx->current_lock_mutex_owner is not
      correctly set.
      
      Fix: Make sure that trx->current_lock_mutex_owner is correctly set.
      f3e36246
  3. 19 Oct, 2015 4 commits
  4. 25 Sep, 2015 2 commits
    • Nirbhay Choubey's avatar
      4d33f9dc
    • Nirbhay Choubey's avatar
      MDEV-8208: Sporadic SEGFAULT on startup · 13615c5e
      Nirbhay Choubey authored
      Addendum:
      * Before calling THD::init_for_queries(), flip the current_thd to wsrep
      thread so that memory gets allocated for the right THD.
      * Use wsrep_creating_startup_threads instead of plugins_are_initialized
      as the condition for the execution of THD::init_for_queries() within
      start_wsrep_THD(), as use of latter could still leave some room for
      race.
      13615c5e
  5. 22 Sep, 2015 2 commits
  6. 17 Sep, 2015 1 commit
    • Nirbhay Choubey's avatar
      MDEV-8208: Sporadic SEGFAULT on startup · db2e21bf
      Nirbhay Choubey authored
      Problem:
      When mysqld starts as a galera node, it creates 2 system threads
      (applier & rollbacker) using start_wsrep_THD(). These threads are
      created before plugin initialization (plugin_init()) for SST methods
      like rsync and xtrabackup.
      
      The threads' initialization itself can proceed in parallel to mysqld's
      main thread of execution. As a result, the thread initialization code
      (start_wsrep_THD()) can end up accessing some un/partially initialized
      structures (like maria_hton, in this particular case) resulting in
      segfault.
      
      Solution:
      Fixed by calling THD::init_for_queries() (which accesses maria_hton)
      only after the plugins have been initialized.
      db2e21bf
  7. 15 Sep, 2015 2 commits
  8. 14 Sep, 2015 2 commits
  9. 10 Sep, 2015 25 commits