1
/*****************************************************************************
3
Copyright (C) 2006, 2009, Innobase Oy. All Rights Reserved.
5
This program is free software; you can redistribute it and/or modify it under
6
the terms of the GNU General Public License as published by the Free Software
7
Foundation; version 2 of the License.
9
This program is distributed in the hope that it will be useful, but WITHOUT
10
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
You should have received a copy of the GNU General Public License along with
14
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
15
St, Fifth Floor, Boston, MA 02110-1301 USA
17
*****************************************************************************/
19
/**************************************************//**
20
@file include/buf0buddy.ic
21
Binary buddy allocator for compressed pages
23
Created December 2006 by Marko Makela
24
*******************************************************/
26
#ifdef UNIV_MATERIALIZE
32
#include "buf0buddy.h"
34
#include "sync0sync.h"
36
/**********************************************************************//**
37
Allocate a block. The thread calling this function must hold
38
buf_pool->mutex and must not hold buf_pool->zip_mutex or any block->mutex.
39
The buf_pool->mutex may only be released and reacquired if lru != NULL.
40
@return allocated block, possibly NULL if lru==NULL */
46
/*!< in: buffer pool in which the page resides */
47
ulint i, /*!< in: index of buf_pool->zip_free[],
49
ibool* lru) /*!< in: pointer to a variable that will be assigned
50
TRUE if storage was allocated from the LRU list
51
and buf_pool->mutex was temporarily released,
52
or NULL if the LRU list should not be used */
53
__attribute__((malloc));
55
/**********************************************************************//**
56
Deallocate a block. */
61
buf_pool_t* buf_pool, /*!< in: buffer pool instance */
62
void* buf, /*!< in: block to be freed, must not be
63
pointed to by the buffer pool */
64
ulint i) /*!< in: index of buf_pool->zip_free[],
66
__attribute__((nonnull));
68
/**********************************************************************//**
69
Get the index of buf_pool->zip_free[] for a given block size.
70
@return index of buf_pool->zip_free[], or BUF_BUDDY_SIZES */
75
ulint size) /*!< in: block size */
80
for (i = 0, s = BUF_BUDDY_LOW; s < size; i++, s <<= 1) {
83
ut_ad(i <= BUF_BUDDY_SIZES);
87
/**********************************************************************//**
88
Allocate a block. The thread calling this function must hold
89
buf_pool->mutex and must not hold buf_pool->zip_mutex or any
90
block->mutex. The buf_pool->mutex may only be released and reacquired
91
if lru != NULL. This function should only be used for allocating
92
compressed page frames or control blocks (buf_page_t). Allocated
93
control blocks must be properly initialized immediately after
94
buf_buddy_alloc() has returned the memory, before releasing
96
@return allocated block, possibly NULL if lru == NULL */
101
buf_pool_t* buf_pool, /*!< in: buffer pool in which
103
ulint size, /*!< in: block size, up to
105
ibool* lru) /*!< in: pointer to a variable
106
that will be assigned TRUE if
107
storage was allocated from the
108
LRU list and buf_pool->mutex was
109
temporarily released, or NULL if
110
the LRU list should not be used */
112
ut_ad(buf_pool_mutex_own(buf_pool));
114
return(buf_buddy_alloc_low(buf_pool, buf_buddy_get_slot(size), lru));
117
/**********************************************************************//**
118
Deallocate a block. */
123
buf_pool_t* buf_pool, /*!< in: buffer pool instance */
124
void* buf, /*!< in: block to be freed, must not be
125
pointed to by the buffer pool */
126
ulint size) /*!< in: block size, up to
129
ut_ad(buf_pool_mutex_own(buf_pool));
131
buf_buddy_free_low(buf_pool, buf, buf_buddy_get_slot(size));
134
#ifdef UNIV_MATERIALIZE
136
# define UNIV_INLINE UNIV_INLINE_ORIGINAL