diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-02-02 19:43:47 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-02-02 19:57:59 +0200 |
commit | f69a3b2e920a9409d33c0f36227cb42b1ec5a332 (patch) | |
tree | 13e5bd572f1eab1ce42405d182862c2066bf2b68 /storage/innobase/srv/srv0srv.cc | |
parent | f694df6ac534e9e8396f9c9a7cae3768efc88311 (diff) | |
download | mariadb-git-f69a3b2e920a9409d33c0f36227cb42b1ec5a332.tar.gz |
After-merge fix for commit d4df7bc9b1fbdfb5c98134091a9ff998af60954f
The merge omitted some InnoDB and XtraDB conflict resolutions,
most notably, failing to merge the fix of MDEV-12173.
ibuf_merge_or_delete_for_page(), lock_rec_block_validate():
Invoke fil_space_acquire_silent() instead of fil_space_acquire().
This fixes MDEV-12173.
wsrep_debug, wsrep_trx_is_aborting(): Removed unused declarations.
_fil_io(): Remove. Instead, declare default parameters for the XtraDB
fil_io().
buf_read_page_low(): Declare default parameters, and clean up some
callers.
os_aio(): Correct the macro that is defined when !UNIV_PFS_IO.
Diffstat (limited to 'storage/innobase/srv/srv0srv.cc')
-rw-r--r-- | storage/innobase/srv/srv0srv.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/storage/innobase/srv/srv0srv.cc b/storage/innobase/srv/srv0srv.cc index 749ece33a06..cb003edfbdc 100644 --- a/storage/innobase/srv/srv0srv.cc +++ b/storage/innobase/srv/srv0srv.cc @@ -77,10 +77,6 @@ Created 10/8/1995 Heikki Tuuri #include "fil0pagecompress.h" #include "btr0scrub.h" -#ifdef WITH_WSREP -extern int wsrep_debug; -extern int wsrep_trx_is_aborting(void *thd_ptr); -#endif /* The following is the maximum allowed duration of a lock wait. */ UNIV_INTERN ulong srv_fatal_semaphore_wait_threshold = DEFAULT_SRV_FATAL_SEMAPHORE_TIMEOUT; |