Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f43adb80
Commit
f43adb80
authored
Jun 16, 2011
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1 to mysql-5.5.
parents
3400e0be
b0fc27dc
Changes
8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
81 additions
and
542 deletions
+81
-542
storage/innobase/buf/buf0buddy.c
storage/innobase/buf/buf0buddy.c
+5
-2
storage/innobase/buf/buf0buf.c
storage/innobase/buf/buf0buf.c
+5
-459
storage/innobase/buf/buf0flu.c
storage/innobase/buf/buf0flu.c
+3
-1
storage/innobase/buf/buf0lru.c
storage/innobase/buf/buf0lru.c
+7
-1
storage/innobase/include/buf0buf.h
storage/innobase/include/buf0buf.h
+3
-7
storage/innobase/include/buf0lru.h
storage/innobase/include/buf0lru.h
+3
-1
storage/innobase/page/page0zip.c
storage/innobase/page/page0zip.c
+50
-66
storage/innobase/rem/rem0rec.c
storage/innobase/rem/rem0rec.c
+5
-5
No files found.
storage/innobase/buf/buf0buddy.c
View file @
f43adb80
/*****************************************************************************
Copyright (c) 2006, 201
0, Innobase Oy
. All Rights Reserved.
Copyright (c) 2006, 201
1, Oracle and/or its affiliates
. All Rights Reserved.
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
...
...
@@ -352,7 +352,9 @@ buf_buddy_relocate_block(
buf_page_t
*
bpage
,
/*!< in: block to relocate */
buf_page_t
*
dpage
)
/*!< in: free block to relocate to */
{
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
buf_page_t
*
b
;
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
buf_pool_t
*
buf_pool
=
buf_pool_from_bpage
(
bpage
);
ut_ad
(
buf_pool_mutex_own
(
buf_pool
));
...
...
@@ -382,7 +384,7 @@ buf_buddy_relocate_block(
buf_relocate
(
bpage
,
dpage
);
ut_d
(
bpage
->
state
=
BUF_BLOCK_ZIP_FREE
);
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
/* relocate buf_pool->zip_clean */
b
=
UT_LIST_GET_PREV
(
list
,
dpage
);
UT_LIST_REMOVE
(
list
,
buf_pool
->
zip_clean
,
dpage
);
...
...
@@ -392,6 +394,7 @@ buf_buddy_relocate_block(
}
else
{
UT_LIST_ADD_FIRST
(
list
,
buf_pool
->
zip_clean
,
dpage
);
}
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
UNIV_MEM_INVALID
(
bpage
,
sizeof
*
bpage
);
...
...
storage/innobase/buf/buf0buf.c
View file @
f43adb80
This diff is collapsed.
Click to expand it.
storage/innobase/buf/buf0flu.c
View file @
f43adb80
/*****************************************************************************
Copyright (c) 1995, 201
0, Innobase Oy
. All Rights Reserved.
Copyright (c) 1995, 201
1, Oracle and/or its affiliates
. All Rights Reserved.
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
...
...
@@ -524,7 +524,9 @@ buf_flush_remove(
case
BUF_BLOCK_ZIP_DIRTY
:
buf_page_set_state
(
bpage
,
BUF_BLOCK_ZIP_PAGE
);
UT_LIST_REMOVE
(
list
,
buf_pool
->
flush_list
,
bpage
);
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
buf_LRU_insert_zip_clean
(
bpage
);
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
break
;
case
BUF_BLOCK_FILE_PAGE
:
UT_LIST_REMOVE
(
list
,
buf_pool
->
flush_list
,
bpage
);
...
...
storage/innobase/buf/buf0lru.c
View file @
f43adb80
/*****************************************************************************
Copyright (c) 1995, 201
0, Innobase Oy
. All Rights Reserved.
Copyright (c) 1995, 201
1, Oracle and/or its affiliates
. All Rights Reserved.
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
...
...
@@ -525,6 +525,7 @@ buf_LRU_invalidate_tablespace(
}
}
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
/********************************************************************//**
Insert a compressed block into buf_pool->zip_clean in the LRU order. */
UNIV_INTERN
...
...
@@ -557,6 +558,7 @@ buf_LRU_insert_zip_clean(
UT_LIST_ADD_FIRST
(
list
,
buf_pool
->
zip_clean
,
bpage
);
}
}
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
/******************************************************************//**
Try to free an uncompressed page of a compressed block from the unzip
...
...
@@ -1598,7 +1600,9 @@ alloc:
}
if
(
b
->
state
==
BUF_BLOCK_ZIP_PAGE
)
{
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
buf_LRU_insert_zip_clean
(
b
);
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
}
else
{
/* Relocate on buf_pool->flush_list. */
buf_flush_relocate_on_flush_list
(
bpage
,
b
);
...
...
@@ -1884,7 +1888,9 @@ buf_LRU_block_remove_hashed_page(
ut_a
(
bpage
->
zip
.
data
);
ut_a
(
buf_page_get_zip_size
(
bpage
));
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
UT_LIST_REMOVE
(
list
,
buf_pool
->
zip_clean
,
bpage
);
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
mutex_exit
(
&
buf_pool
->
zip_mutex
);
buf_pool_mutex_exit_forbid
(
buf_pool
);
...
...
storage/innobase/include/buf0buf.h
View file @
f43adb80
...
...
@@ -246,12 +246,6 @@ buf_relocate(
BUF_BLOCK_ZIP_DIRTY or BUF_BLOCK_ZIP_PAGE */
buf_page_t
*
dpage
)
/*!< in/out: destination control block */
__attribute__
((
nonnull
));
/********************************************************************//**
Resizes the buffer pool. */
UNIV_INTERN
void
buf_pool_resize
(
void
);
/*=================*/
/*********************************************************************//**
Gets the current size of buffer buf_pool in bytes.
@return size in bytes */
...
...
@@ -1221,7 +1215,7 @@ ulint
buf_get_free_list_len
(
void
);
/*=======================*/
/********************************************************************
/********************************************************************
//**
Determine if a block is a sentinel for a buffer pool watch.
@return TRUE if a sentinel for a buffer pool watch, FALSE if not */
UNIV_INTERN
...
...
@@ -1757,8 +1751,10 @@ struct buf_pool_struct{
frames and buf_page_t descriptors of blocks that exist
in the buffer pool only in compressed form. */
/* @{ */
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
UT_LIST_BASE_NODE_T
(
buf_page_t
)
zip_clean
;
/*!< unmodified compressed pages */
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
UT_LIST_BASE_NODE_T
(
buf_page_t
)
zip_free
[
BUF_BUDDY_SIZES
];
/*!< buddy free lists */
...
...
storage/innobase/include/buf0lru.h
View file @
f43adb80
/*****************************************************************************
Copyright (c) 1995, 20
09, Innobase Oy
. All Rights Reserved.
Copyright (c) 1995, 20
11, Oracle and/or its affiliates
. All Rights Reserved.
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
...
...
@@ -85,6 +85,7 @@ void
buf_LRU_invalidate_tablespace
(
/*==========================*/
ulint
id
);
/*!< in: space id */
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
/********************************************************************//**
Insert a compressed block into buf_pool->zip_clean in the LRU order. */
UNIV_INTERN
...
...
@@ -92,6 +93,7 @@ void
buf_LRU_insert_zip_clean
(
/*=====================*/
buf_page_t
*
bpage
);
/*!< in: pointer to the block in question */
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
/******************************************************************//**
Try to free a block. If bpage is a descriptor of a compressed-only
...
...
storage/innobase/page/page0zip.c
View file @
f43adb80
/*****************************************************************************
Copyright (c) 2005, 20
09, Innobase Oy
. All Rights Reserved.
Copyright (c) 2005, 20
11, Oracle and/or its affiliates
. All Rights Reserved.
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
...
...
@@ -3912,17 +3912,9 @@ page_zip_write_trx_id_and_roll_ptr(
UNIV_MEM_ASSERT_RW
(
page_zip
->
data
,
page_zip_get_size
(
page_zip
));
}
#ifdef UNIV_ZIP_DEBUG
/** Set this variable in a debugger to disable page_zip_clear_rec().
The only observable effect should be the compression ratio due to
deleted records not being zeroed out. In rare cases, there can be
page_zip_validate() failures on the node_ptr, trx_id and roll_ptr
columns if the space is reallocated for a smaller record. */
UNIV_INTERN
ibool
page_zip_clear_rec_disable
;
#endif
/* UNIV_ZIP_DEBUG */
/**********************************************************************//**
Clear an area on the uncompressed and compressed page, if possible. */
Clear an area on the uncompressed and compressed page.
Do not clear the data payload, as that would grow the modification log. */
static
void
page_zip_clear_rec
(
...
...
@@ -3934,6 +3926,9 @@ page_zip_clear_rec(
{
ulint
heap_no
;
page_t
*
page
=
page_align
(
rec
);
byte
*
storage
;
byte
*
field
;
ulint
len
;
/* page_zip_validate() would fail here if a record
containing externally stored columns is being deleted. */
ut_ad
(
rec_offs_validate
(
rec
,
index
,
offsets
));
...
...
@@ -3949,60 +3944,46 @@ page_zip_clear_rec(
UNIV_MEM_ASSERT_RW
(
rec
-
rec_offs_extra_size
(
offsets
),
rec_offs_extra_size
(
offsets
));
if
(
#ifdef UNIV_ZIP_DEBUG
!
page_zip_clear_rec_disable
&&
#endif
/* UNIV_ZIP_DEBUG */
page_zip
->
m_end
+
1
+
((
heap_no
-
1
)
>=
64
)
/* size of the log entry */
+
page_zip_get_trailer_len
(
page_zip
,
dict_index_is_clust
(
index
),
NULL
)
<
page_zip_get_size
(
page_zip
))
{
byte
*
data
;
/* Clear only the data bytes, because the allocator and
the decompressor depend on the extra bytes. */
memset
(
rec
,
0
,
rec_offs_data_size
(
offsets
));
if
(
!
page_is_leaf
(
page
))
{
/* Clear node_ptr on the compressed page. */
byte
*
storage
=
page_zip
->
data
/* Clear node_ptr. On the compressed page,
there is an array of node_ptr immediately before the
dense page directory, at the very end of the page. */
storage
=
page_zip
->
data
+
page_zip_get_size
(
page_zip
)
-
(
page_dir_get_n_heap
(
page
)
-
PAGE_HEAP_NO_USER_LOW
)
*
PAGE_ZIP_DIR_SLOT_SIZE
;
ut_ad
(
dict_index_get_n_unique_in_tree
(
index
)
==
rec_offs_n_fields
(
offsets
)
-
1
);
field
=
rec_get_nth_field
(
rec
,
offsets
,
rec_offs_n_fields
(
offsets
)
-
1
,
&
len
);
ut_ad
(
len
==
REC_NODE_PTR_SIZE
);
ut_ad
(
!
rec_offs_any_extern
(
offsets
));
memset
(
field
,
0
,
REC_NODE_PTR_SIZE
);
memset
(
storage
-
(
heap_no
-
1
)
*
REC_NODE_PTR_SIZE
,
0
,
REC_NODE_PTR_SIZE
);
}
else
if
(
dict_index_is_clust
(
index
))
{
/* Clear trx_id and roll_ptr on the compressed page. */
byte
*
storage
=
page_zip
->
data
/* Clear trx_id and roll_ptr. On the compressed page,
there is an array of these fields immediately before the
dense page directory, at the very end of the page. */
const
ulint
trx_id_pos
=
dict_col_get_clust_pos
(
dict_table_get_sys_col
(
index
->
table
,
DATA_TRX_ID
),
index
);
storage
=
page_zip
->
data
+
page_zip_get_size
(
page_zip
)
-
(
page_dir_get_n_heap
(
page
)
-
PAGE_HEAP_NO_USER_LOW
)
*
PAGE_ZIP_DIR_SLOT_SIZE
;
field
=
rec_get_nth_field
(
rec
,
offsets
,
trx_id_pos
,
&
len
);
ut_ad
(
len
==
DATA_TRX_ID_LEN
);
memset
(
field
,
0
,
DATA_TRX_ID_LEN
+
DATA_ROLL_PTR_LEN
);
memset
(
storage
-
(
heap_no
-
1
)
*
(
DATA_TRX_ID_LEN
+
DATA_ROLL_PTR_LEN
),
0
,
DATA_TRX_ID_LEN
+
DATA_ROLL_PTR_LEN
);
}
/* Log that the data was zeroed out. */
data
=
page_zip
->
data
+
page_zip
->
m_end
;
ut_ad
(
!*
data
);
if
(
UNIV_UNLIKELY
(
heap_no
-
1
>=
64
))
{
*
data
++
=
(
byte
)
(
0x80
|
(
heap_no
-
1
)
>>
7
);
ut_ad
(
!*
data
);
}
*
data
++
=
(
byte
)
((
heap_no
-
1
)
<<
1
|
1
);
ut_ad
(
!*
data
);
ut_ad
((
ulint
)
(
data
-
page_zip
->
data
)
<
page_zip_get_size
(
page_zip
));
page_zip
->
m_end
=
data
-
page_zip
->
data
;
page_zip
->
m_nonempty
=
TRUE
;
}
else
if
(
page_is_leaf
(
page
)
&&
dict_index_is_clust
(
index
))
{
/* Do not clear the record, because there is not enough space
to log the operation. */
if
(
rec_offs_any_extern
(
offsets
))
{
ulint
i
;
...
...
@@ -4011,15 +3992,18 @@ page_zip_clear_rec(
/* Clear all BLOB pointers in order to make
page_zip_validate() pass. */
if
(
rec_offs_nth_extern
(
offsets
,
i
))
{
ulint
len
;
byte
*
field
=
rec_get_nth_field
(
field
=
rec_get_nth_field
(
rec
,
offsets
,
i
,
&
len
);
ut_ad
(
len
==
BTR_EXTERN_FIELD_REF_SIZE
);
memset
(
field
+
len
-
BTR_EXTERN_FIELD_REF_SIZE
,
0
,
BTR_EXTERN_FIELD_REF_SIZE
);
}
}
}
}
else
{
ut_ad
(
!
rec_offs_any_extern
(
offsets
));
}
#ifdef UNIV_ZIP_DEBUG
...
...
storage/innobase/rem/rem0rec.c
View file @
f43adb80
/*****************************************************************************
Copyright (c) 1994, 201
0, Innobase Oy
. All Rights Reserved.
Copyright (c) 1994, 201
1, Oracle and/or its affiliates
. All Rights Reserved.
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
...
...
@@ -408,7 +408,7 @@ rec_init_offsets(
do
{
ulint
len
;
if
(
UNIV_UNLIKELY
(
i
==
n_node_ptr_field
))
{
len
=
offs
+=
4
;
len
=
offs
+=
REC_NODE_PTR_SIZE
;
goto
resolved
;
}
...
...
@@ -640,7 +640,7 @@ rec_get_offsets_reverse(
do
{
ulint
len
;
if
(
UNIV_UNLIKELY
(
i
==
n_node_ptr_field
))
{
len
=
offs
+=
4
;
len
=
offs
+=
REC_NODE_PTR_SIZE
;
goto
resolved
;
}
...
...
@@ -1131,9 +1131,9 @@ rec_convert_dtuple_to_rec_comp(
if
(
UNIV_UNLIKELY
(
i
==
n_node_ptr_field
))
{
ut_ad
(
dtype_get_prtype
(
type
)
&
DATA_NOT_NULL
);
ut_ad
(
len
==
4
);
ut_ad
(
len
==
REC_NODE_PTR_SIZE
);
memcpy
(
end
,
dfield_get_data
(
field
),
len
);
end
+=
4
;
end
+=
REC_NODE_PTR_SIZE
;
break
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment