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
02a60e86
Commit
02a60e86
authored
May 19, 2010
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence some more bogus Valgrind warnings on non-32-bit systems. (Bug #53307)
parent
05339fe6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
1 deletion
+21
-1
storage/innodb_plugin/buf/buf0buddy.c
storage/innodb_plugin/buf/buf0buddy.c
+5
-0
storage/innodb_plugin/buf/buf0buf.c
storage/innodb_plugin/buf/buf0buf.c
+5
-0
storage/innodb_plugin/buf/buf0lru.c
storage/innodb_plugin/buf/buf0lru.c
+6
-1
storage/innodb_plugin/page/page0zip.c
storage/innodb_plugin/page/page0zip.c
+5
-0
No files found.
storage/innodb_plugin/buf/buf0buddy.c
View file @
02a60e86
...
...
@@ -495,7 +495,12 @@ success:
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/innodb_plugin/buf/buf0buf.c
View file @
02a60e86
...
...
@@ -2280,7 +2280,12 @@ wait_until_unfixed:
ut_ad
(
buf_block_get_state
(
block
)
==
BUF_BLOCK_FILE_PAGE
);
mutex_enter
(
&
block
->
mutex
);
#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
(
&
block
->
page
,
sizeof
block
->
page
);
#endif
buf_block_buf_fix_inc
(
block
,
file
,
line
);
...
...
storage/innodb_plugin/buf/buf0lru.c
View file @
02a60e86
...
...
@@ -1494,8 +1494,13 @@ alloc:
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/innodb_plugin/page/page0zip.c
View file @
02a60e86
...
...
@@ -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