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.h
1
/******************************************************
21
2
Binary buddy allocator for compressed pages
23
6
Created December 2006 by Marko Makela
24
7
*******************************************************/
35
18
#include "buf0types.h"
37
/**********************************************************************//**
20
/**************************************************************************
38
21
Allocate a block. The thread calling this function must hold
39
buf_pool->mutex and must not hold buf_pool->zip_mutex or any
40
block->mutex. The buf_pool->mutex may only be released and reacquired
22
buf_pool_mutex and must not hold buf_pool_zip_mutex or any
23
block->mutex. The buf_pool_mutex may only be released and reacquired
41
24
if lru != NULL. This function should only be used for allocating
42
25
compressed page frames or control blocks (buf_page_t). Allocated
43
26
control blocks must be properly initialized immediately after
44
27
buf_buddy_alloc() has returned the memory, before releasing
46
@return allocated block, possibly NULL if lru == NULL */
52
/*!< buffer pool in which the block resides */
53
ulint size, /*!< in: block size, up to UNIV_PAGE_SIZE */
54
ibool* lru) /*!< in: pointer to a variable that will be assigned
33
/* out: allocated block,
34
possibly NULL if lru == NULL */
35
ulint size, /* in: block size, up to UNIV_PAGE_SIZE */
36
ibool* lru) /* in: pointer to a variable that will be assigned
55
37
TRUE if storage was allocated from the LRU list
56
and buf_pool->mutex was temporarily released,
38
and buf_pool_mutex was temporarily released,
57
39
or NULL if the LRU list should not be used */
58
40
__attribute__((malloc));
60
/**********************************************************************//**
42
/**************************************************************************
61
43
Release a block. */
67
/*!< buffer pool in which the block resides */
68
void* buf, /*!< in: block to be freed, must not be
48
void* buf, /* in: block to be freed, must not be
69
49
pointed to by the buffer pool */
70
ulint size) /*!< in: block size, up to UNIV_PAGE_SIZE */
50
ulint size) /* in: block size, up to UNIV_PAGE_SIZE */
71
51
__attribute__((nonnull));
53
/** Statistics of buddy blocks of a given size. */
54
struct buf_buddy_stat_struct {
55
/** Number of blocks allocated from the buddy system. */
57
/** Number of blocks relocated by the buddy system. */
58
ib_uint64_t relocated;
59
/** Total duration of block relocations, in microseconds. */
60
ib_uint64_t relocated_usec;
63
typedef struct buf_buddy_stat_struct buf_buddy_stat_t;
65
/** Statistics of the buddy system, indexed by block size.
66
Protected by buf_pool_mutex. */
67
extern buf_buddy_stat_t buf_buddy_stat[BUF_BUDDY_SIZES + 1];
73
69
#ifndef UNIV_NONINL
74
70
# include "buf0buddy.ic"