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
b5050390
Commit
b5050390
authored
Dec 03, 2008
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/innodb+: Remove redundant buf_pool_watch_notify() calls
after buf_page_init().
parent
e631cd6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
11 deletions
+19
-11
buf/buf0buf.c
buf/buf0buf.c
+0
-2
ibuf/ibuf0ibuf.c
ibuf/ibuf0ibuf.c
+19
-9
No files found.
buf/buf0buf.c
View file @
b5050390
...
...
@@ -2732,7 +2732,6 @@ buf_page_init_for_read(
mutex_enter
(
&
block
->
mutex
);
buf_page_init
(
space
,
offset
,
block
);
buf_pool_watch_notify
(
space
,
offset
);
/* The block must be put to the LRU list, to the old blocks */
buf_LRU_add_block
(
bpage
,
TRUE
/* to old blocks */
);
...
...
@@ -2909,7 +2908,6 @@ buf_page_create(
mutex_enter
(
&
block
->
mutex
);
buf_page_init
(
space
,
offset
,
block
);
buf_pool_watch_notify
(
space
,
offset
);
/* The block must be put to the LRU list */
buf_LRU_add_block
(
&
block
->
page
,
FALSE
);
...
...
ibuf/ibuf0ibuf.c
View file @
b5050390
...
...
@@ -3249,14 +3249,6 @@ ibuf_insert_low(
btr_pcur_open
(
ibuf
->
index
,
ibuf_entry
,
PAGE_CUR_LE
,
mode
,
&
pcur
,
&
mtr
);
/* Don't buffer deletes if the page has been read in to the buffer
pool. */
if
(
op
==
IBUF_OP_DELETE
&&
buf_pool_watch_occurred
(
space
,
page_no
))
{
err
=
DB_STRONG_FAIL
;
goto
function_exit
;
}
/* Find out the volume of already buffered inserts for the same index
page */
min_n_recs
=
0
;
...
...
@@ -3334,13 +3326,25 @@ ibuf_insert_low(
bitmap_page
,
page_no
,
zip_size
,
IBUF_BITMAP_BUFFERED
,
&
bitmap_mtr
);
/* Don't buffer deletes if the page has been read in to the buffer
pool. */
if
(
op
==
IBUF_OP_DELETE
&&
buf_pool_watch_occurred
(
space
,
page_no
))
{
err
=
DB_STRONG_FAIL
;
mtr_commit
(
&
bitmap_mtr
);
goto
function_exit
;
}
if
(
!
old_bit_value
)
{
ibuf_bitmap_page_set_bits
(
bitmap_page
,
page_no
,
zip_size
,
IBUF_BITMAP_BUFFERED
,
TRUE
,
&
bitmap_mtr
);
}
mtr_commit
(
&
bitmap_mtr
);
if
(
op
!=
IBUF_OP_DELETE
)
{
mtr_commit
(
&
bitmap_mtr
);
}
cursor
=
btr_pcur_get_btr_cur
(
&
pcur
);
...
...
@@ -3377,6 +3381,12 @@ ibuf_insert_low(
ibuf_size_update
(
root
,
&
mtr
);
}
if
(
op
==
IBUF_OP_DELETE
)
{
ut_a
(
!
buf_pool_watch_occurred
(
space
,
page_no
));
mtr_commit
(
&
bitmap_mtr
);
}
function_exit:
#ifdef UNIV_IBUF_COUNT_DEBUG
if
(
err
==
DB_SUCCESS
)
{
...
...
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