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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
68f13abf
Commit
68f13abf
authored
May 19, 2010
by
Sunny Bains
Browse files
Options
Browse Files
Download
Plain Diff
Merge changes from parent.
parents
553c9c36
db70a821
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
14 deletions
+26
-14
storage/innobase/buf/buf0buddy.c
storage/innobase/buf/buf0buddy.c
+5
-0
storage/innobase/buf/buf0lru.c
storage/innobase/buf/buf0lru.c
+6
-1
storage/innobase/include/mach0data.ic
storage/innobase/include/mach0data.ic
+10
-13
storage/innobase/page/page0zip.c
storage/innobase/page/page0zip.c
+5
-0
No files found.
storage/innobase/buf/buf0buddy.c
View file @
68f13abf
...
...
@@ -502,7 +502,12 @@ buf_buddy_relocate(
mutex_exit
(
mutex
);
}
else
if
(
i
==
buf_buddy_get_slot
(
sizeof
(
buf_page_t
)))
{
/* This must be a buf_page_t object. */
#if UNIV_WORD_SIZE == 4
/* On 32-bit systems, there is no padding in
buf_page_t. On other systems, Valgrind could complain
about uninitialized pad bytes. */
UNIV_MEM_ASSERT_RW
(
src
,
size
);
#endif
if
(
buf_buddy_relocate_block
(
src
,
dst
))
{
goto
success
;
...
...
storage/innobase/buf/buf0lru.c
View file @
68f13abf
...
...
@@ -1578,8 +1578,13 @@ buf_LRU_free_block(
ut_ad
(
prev_b
->
in_LRU_list
);
ut_ad
(
buf_page_in_file
(
prev_b
));
#if UNIV_WORD_SIZE == 4
/* On 32-bit systems, there is no
padding in buf_page_t. On other
systems, Valgrind could complain about
uninitialized pad bytes. */
UNIV_MEM_ASSERT_RW
(
prev_b
,
sizeof
*
prev_b
);
#endif
UT_LIST_INSERT_AFTER
(
LRU
,
buf_pool
->
LRU
,
prev_b
,
b
);
...
...
storage/innobase/include/mach0data.ic
View file @
68f13abf
...
...
@@ -36,7 +36,7 @@ mach_write_to_1(
ulint n) /*!< in: ulint integer to be stored, >= 0, < 256 */
{
ut_ad(b);
ut_ad(
n
<= 0xFFUL);
ut_ad(
(n | 0xFFUL)
<= 0xFFUL);
b[0] = (byte)n;
}
...
...
@@ -65,7 +65,7 @@ mach_write_to_2(
ulint n) /*!< in: ulint integer to be stored */
{
ut_ad(b);
ut_ad(
n
<= 0xFFFFUL);
ut_ad(
(n | 0xFFFFUL)
<= 0xFFFFUL);
b[0] = (byte)(n >> 8);
b[1] = (byte)(n);
...
...
@@ -81,10 +81,7 @@ mach_read_from_2(
/*=============*/
const byte* b) /*!< in: pointer to 2 bytes */
{
ut_ad(b);
return( ((ulint)(b[0]) << 8)
+ (ulint)(b[1])
);
return(((ulint)(b[0]) << 8) | (ulint)(b[1]));
}
/********************************************************//**
...
...
@@ -129,7 +126,7 @@ mach_write_to_3(
ulint n) /*!< in: ulint integer to be stored */
{
ut_ad(b);
ut_ad(
n
<= 0xFFFFFFUL);
ut_ad(
(n | 0xFFFFFFUL)
<= 0xFFFFFFUL);
b[0] = (byte)(n >> 16);
b[1] = (byte)(n >> 8);
...
...
@@ -148,8 +145,8 @@ mach_read_from_3(
{
ut_ad(b);
return( ((ulint)(b[0]) << 16)
+
((ulint)(b[1]) << 8)
+
(ulint)(b[2])
|
((ulint)(b[1]) << 8)
|
(ulint)(b[2])
);
}
...
...
@@ -183,9 +180,9 @@ mach_read_from_4(
{
ut_ad(b);
return( ((ulint)(b[0]) << 24)
+
((ulint)(b[1]) << 16)
+
((ulint)(b[2]) << 8)
+
(ulint)(b[3])
|
((ulint)(b[1]) << 16)
|
((ulint)(b[2]) << 8)
|
(ulint)(b[3])
);
}
...
...
@@ -721,7 +718,7 @@ mach_read_from_2_little_endian(
/*===========================*/
const byte* buf) /*!< in: from where to read */
{
return((ulint)(
*buf) + ((ulint)(*(buf + 1))) * 256
);
return((ulint)(
buf[0]) | ((ulint)(buf[1]) << 8)
);
}
/*********************************************************//**
...
...
storage/innobase/page/page0zip.c
View file @
68f13abf
...
...
@@ -3117,8 +3117,13 @@ page_zip_validate_low(
temp_page_zip in a debugger when running valgrind --db-attach. */
VALGRIND_GET_VBITS
(
page
,
temp_page
,
UNIV_PAGE_SIZE
);
UNIV_MEM_ASSERT_RW
(
page
,
UNIV_PAGE_SIZE
);
# if UNIV_WORD_SIZE == 4
VALGRIND_GET_VBITS
(
page_zip
,
&
temp_page_zip
,
sizeof
temp_page_zip
);
/* On 32-bit systems, there is no padding in page_zip_des_t.
On other systems, Valgrind could complain about uninitialized
pad bytes. */
UNIV_MEM_ASSERT_RW
(
page_zip
,
sizeof
*
page_zip
);
# endif
VALGRIND_GET_VBITS
(
page_zip
->
data
,
temp_page
,
page_zip_get_size
(
page_zip
));
UNIV_MEM_ASSERT_RW
(
page_zip
->
data
,
page_zip_get_size
(
page_zip
));
...
...
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