summaryrefslogtreecommitdiff
path: root/storage/innobase/include/buf0flu.h
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-05-05 07:06:37 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-05-05 07:06:37 +0300
commit64488a6f2dd6aa43462292b757e783cfba11a8c6 (patch)
treebb8ded4dc80d4612bd4f7c19090739acbf25f277 /storage/innobase/include/buf0flu.h
parent97261cbb7a5961c38f973ba63fdc007d1992d931 (diff)
downloadmariadb-git-64488a6f2dd6aa43462292b757e783cfba11a8c6.tar.gz
Cleanup: Remove global functions or redundant parameters
fil_flush_file_spaces(): Remove the constant parameter. buf_flush_start(), buf_flush_end(): Use static linkage. fil_page_get_prev(), fil_page_get_next(), fil_addr_is_null(): Remove.
Diffstat (limited to 'storage/innobase/include/buf0flu.h')
-rw-r--r--storage/innobase/include/buf0flu.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/storage/innobase/include/buf0flu.h b/storage/innobase/include/buf0flu.h
index becf2d052ed..eb6351fb244 100644
--- a/storage/innobase/include/buf0flu.h
+++ b/storage/innobase/include/buf0flu.h
@@ -229,14 +229,6 @@ void buf_flush_sync();
@param[in] lsn_limit upper limit of LSN to be flushed */
void buf_flush_request_force(lsn_t lsn_limit);
-/** Start a buffer flush batch for LRU or flush list
-@param[in] flush_type BUF_FLUSH_LRU or BUF_FLUSH_LIST
-@return whether the flush batch was started (was not already running) */
-bool buf_flush_start(buf_flush_t flush_type);
-/** End a buffer flush batch.
-@param[in] flush_type BUF_FLUSH_LRU or BUF_FLUSH_LIST */
-void buf_flush_end(buf_flush_t flush_type);
-
#include "buf0flu.ic"
#endif