mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 04:46:15 +01:00 
			
		
		
		
	buf_buddy_shrink(): Properly cover the case when KEY_BLOCK_SIZE corresponds to the innodb_page_size, that is, the ROW_FORMAT=COMPRESSED page frame is directly allocated from the buffer pool, not via the binary buddy allocator. buf_LRU_check_size_of_non_data_objects(): Avoid a crash when the buffer pool is being shrunk. buf_pool_t::shrink(): Abort if over 95% of the shrunk buffer pool would be occupied by the adaptive hash index or record locks.
		
			
				
	
	
		
			89 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*****************************************************************************
 | 
						|
 | 
						|
Copyright (c) 2006, 2016, Oracle and/or its affiliates. All Rights Reserved.
 | 
						|
Copyright (c) 2018, 2020, MariaDB Corporation.
 | 
						|
 | 
						|
This program is free software; you can redistribute it and/or modify it under
 | 
						|
the terms of the GNU General Public License as published by the Free Software
 | 
						|
Foundation; version 2 of the License.
 | 
						|
 | 
						|
This program is distributed in the hope that it will be useful, but WITHOUT
 | 
						|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 | 
						|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 | 
						|
 | 
						|
You should have received a copy of the GNU General Public License along with
 | 
						|
this program; if not, write to the Free Software Foundation, Inc.,
 | 
						|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
 | 
						|
 | 
						|
*****************************************************************************/
 | 
						|
 | 
						|
/**************************************************//**
 | 
						|
@file include/buf0buddy.h
 | 
						|
Binary buddy allocator for compressed pages
 | 
						|
 | 
						|
Created December 2006 by Marko Makela
 | 
						|
*******************************************************/
 | 
						|
 | 
						|
#pragma once
 | 
						|
#include "buf0types.h"
 | 
						|
 | 
						|
/**
 | 
						|
@param[in]	block size in bytes
 | 
						|
@return index of buf_pool.zip_free[], or BUF_BUDDY_SIZES */
 | 
						|
inline ulint buf_buddy_get_slot(ulint size) noexcept
 | 
						|
{
 | 
						|
	ulint	i;
 | 
						|
	ulint	s;
 | 
						|
 | 
						|
	ut_ad(ut_is_2pow(size));
 | 
						|
	ut_ad(size >= UNIV_ZIP_SIZE_MIN);
 | 
						|
	ut_ad(size <= srv_page_size);
 | 
						|
 | 
						|
	for (i = 0, s = BUF_BUDDY_LOW; s < size; i++, s <<= 1) {
 | 
						|
	}
 | 
						|
	ut_ad(i <= BUF_BUDDY_SIZES);
 | 
						|
	return i;
 | 
						|
}
 | 
						|
 | 
						|
/** Allocate a ROW_FORMAT=COMPRESSED block.
 | 
						|
@param i      index of buf_pool.zip_free[] or BUF_BUDDY_SIZES
 | 
						|
@param lru    assigned to true if buf_pool.mutex was temporarily released
 | 
						|
@return allocated block, never NULL */
 | 
						|
byte *buf_buddy_alloc_low(ulint i, bool *lru) noexcept MY_ATTRIBUTE((malloc));
 | 
						|
 | 
						|
/** Allocate a ROW_FORMAT=COMPRESSED block.
 | 
						|
@param size   compressed page size in bytes
 | 
						|
@param lru    assigned to true if buf_pool.mutex was temporarily released
 | 
						|
@return allocated block, never NULL */
 | 
						|
inline byte *buf_buddy_alloc(ulint size, bool *lru= nullptr) noexcept
 | 
						|
{
 | 
						|
  return buf_buddy_alloc_low(buf_buddy_get_slot(size), lru);
 | 
						|
}
 | 
						|
 | 
						|
/** Deallocate a block.
 | 
						|
@param[in]	buf	block to be freed, must not be pointed to
 | 
						|
			by the buffer pool
 | 
						|
@param[in]	i	index of buf_pool.zip_free[], or BUF_BUDDY_SIZES */
 | 
						|
void buf_buddy_free_low(void* buf, ulint i) noexcept;
 | 
						|
 | 
						|
/** Deallocate a block.
 | 
						|
@param[in]	buf	block to be freed, must not be pointed to
 | 
						|
			by the buffer pool
 | 
						|
@param[in]	size	block size in bytes */
 | 
						|
inline void buf_buddy_free(void* buf, ulint size) noexcept
 | 
						|
{
 | 
						|
  buf_buddy_free_low(buf, buf_buddy_get_slot(size));
 | 
						|
}
 | 
						|
 | 
						|
ATTRIBUTE_COLD MY_ATTRIBUTE((nonnull, warn_unused_result))
 | 
						|
/** Reallocate a ROW_FORMAT=COMPRESSED page frame during buf_pool_t::shrink().
 | 
						|
@param bpage page descriptor covering a ROW_FORMAT=COMPRESSED page
 | 
						|
@param block uncompressed block for storage
 | 
						|
@return block
 | 
						|
@retval nullptr if the block was consumed */
 | 
						|
ATTRIBUTE_COLD
 | 
						|
buf_block_t *buf_buddy_shrink(buf_page_t *bpage, buf_block_t *block) noexcept;
 | 
						|
 | 
						|
/** Combine all pairs of free buddies.
 | 
						|
@param size  the target innodb_buffer_pool_size */
 | 
						|
ATTRIBUTE_COLD void buf_buddy_condense_free(size_t size) noexcept;
 |