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
20b8e5a0
Commit
20b8e5a0
authored
Jun 17, 2022
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.8 into 10.9
parents
15292117
cb19e211
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
38 additions
and
17 deletions
+38
-17
extra/mariabackup/xtrabackup.cc
extra/mariabackup/xtrabackup.cc
+15
-11
storage/innobase/buf/buf0buf.cc
storage/innobase/buf/buf0buf.cc
+10
-1
storage/innobase/buf/buf0lru.cc
storage/innobase/buf/buf0lru.cc
+4
-4
storage/innobase/handler/handler0alter.cc
storage/innobase/handler/handler0alter.cc
+2
-0
storage/innobase/include/buf0buf.h
storage/innobase/include/buf0buf.h
+1
-1
storage/innobase/include/buf0types.h
storage/innobase/include/buf0types.h
+6
-0
No files found.
extra/mariabackup/xtrabackup.cc
View file @
20b8e5a0
...
...
@@ -4692,23 +4692,27 @@ static bool xtrabackup_backup_func()
log_sys
.
create
();
/* get current checkpoint_lsn */
{
mysql_mutex_lock
(
&
recv_sys
.
mutex
);
mysql_mutex_lock
(
&
recv_sys
.
mutex
);
dberr_t
err
=
recv_sys
.
find_checkpoint
(
);
if
(
recv_sys
.
find_checkpoint
()
!=
DB_SUCCESS
)
{
msg
(
"Error: cannot read redo log header"
);
unlock_and_fail:
if
(
err
!=
DB_SUCCESS
)
{
msg
(
"Error: cannot read redo log header"
);
}
else
if
(
!
log_sys
.
is_latest
())
{
msg
(
"Error: cannot process redo log before "
"MariaDB 10.8"
);
err
=
DB_ERROR
;
}
else
{
recv_needed_recovery
=
true
;
}
mysql_mutex_unlock
(
&
recv_sys
.
mutex
);
}
if
(
!
log_sys
.
is_latest
()
)
{
msg
(
"Error: cannot process redo log before MariaDB 10.8"
)
;
goto
unlock_and_fail
;
if
(
err
!=
DB_SUCCESS
)
{
goto
fail
;
}
}
recv_needed_recovery
=
true
;
mysql_mutex_unlock
(
&
recv_sys
.
mutex
);
/* create extra LSN dir if it does not exist. */
if
(
xtrabackup_extra_lsndir
&&!
my_stat
(
xtrabackup_extra_lsndir
,
&
stat_info
,
MYF
(
0
))
...
...
storage/innobase/buf/buf0buf.cc
View file @
20b8e5a0
...
...
@@ -2861,7 +2861,9 @@ buf_page_get_low(
*
err
=
e
;
}
buf_pool
.
corrupted_evict
(
&
block
->
page
,
state
);
if
(
block
->
page
.
id
().
is_corrupted
())
{
buf_pool
.
corrupted_evict
(
&
block
->
page
,
state
);
}
return
nullptr
;
}
...
...
@@ -3199,6 +3201,7 @@ static buf_block_t *buf_page_create_low(page_id_t page_id, ulint zip_size,
free_block
->
initialise
(
page_id
,
zip_size
,
buf_page_t
::
MEMORY
);
buf_pool_t
::
hash_chain
&
chain
=
buf_pool
.
page_hash
.
cell_get
(
page_id
.
fold
());
retry:
mysql_mutex_lock
(
&
buf_pool
.
mutex
);
buf_page_t
*
bpage
=
buf_pool
.
page_hash
.
get
(
page_id
,
chain
);
...
...
@@ -3217,6 +3220,12 @@ static buf_block_t *buf_page_create_low(page_id_t page_id, ulint zip_size,
{
mysql_mutex_unlock
(
&
buf_pool
.
mutex
);
bpage
->
lock
.
x_lock
();
const
page_id_t
id
{
bpage
->
id
()};
if
(
UNIV_UNLIKELY
(
id
!=
page_id
))
{
ut_ad
(
id
.
is_corrupted
());
goto
retry
;
}
mysql_mutex_lock
(
&
buf_pool
.
mutex
);
}
...
...
storage/innobase/buf/buf0lru.cc
View file @
20b8e5a0
...
...
@@ -1216,14 +1216,14 @@ void buf_pool_t::corrupted_evict(buf_page_t *bpage, uint32_t state)
ut_ad
(
!
bpage
->
oldest_modification
());
bpage
->
set_corrupt_id
();
auto
unfix
=
state
-
buf_page_t
::
UNFIX
ED
;
auto
unfix
=
state
-
buf_page_t
::
FRE
ED
;
auto
s
=
bpage
->
zip
.
fix
.
fetch_sub
(
unfix
)
-
unfix
;
bpage
->
lock
.
x_unlock
(
true
);
while
(
s
!=
buf_page_t
::
UNFIXED
)
while
(
s
!=
buf_page_t
::
FREED
||
bpage
->
lock
.
is_locked_or_waiting
()
)
{
ut_ad
(
s
>
buf_page_t
::
UNFIX
ED
);
ut_ad
(
s
<
buf_page_t
::
READ_FIX
);
ut_ad
(
s
>
=
buf_page_t
::
FRE
ED
);
ut_ad
(
s
<
buf_page_t
::
UNFIXED
);
/* Wait for other threads to release the fix count
before releasing the bpage from LRU list. */
(
void
)
LF_BACKOFF
();
...
...
storage/innobase/handler/handler0alter.cc
View file @
20b8e5a0
...
...
@@ -7629,6 +7629,7 @@ ha_innobase::prepare_inplace_alter_table(
if
(
!
(
ha_alter_info
->
handler_flags
&
~
INNOBASE_INPLACE_IGNORE
))
{
/* Nothing to do */
DBUG_ASSERT
(
!
m_prebuilt
->
trx
->
dict_operation_lock_mode
);
m_prebuilt
->
trx_id
=
0
;
DBUG_RETURN
(
false
);
}
...
...
@@ -10442,6 +10443,7 @@ commit_try_norebuild(
sql_print_error
(
"InnoDB: %s: %s
\n
"
,
op
,
ut_strerr
(
error
));
DBUG_ASSERT
(
error
==
DB_IO_ERROR
||
error
==
DB_LOCK_TABLE_FULL
||
error
==
DB_DECRYPTION_FAILED
||
error
==
DB_PAGE_CORRUPTED
||
error
==
DB_CORRUPTION
);
...
...
storage/innobase/include/buf0buf.h
View file @
20b8e5a0
...
...
@@ -2020,7 +2020,7 @@ inline void buf_page_t::set_corrupt_id()
is_write_locked
());
}
#endif
id_
=
page_id_t
(
~
0ULL
);
id_
.
set_corrupted
(
);
}
/** Set oldest_modification when adding to buf_pool.flush_list */
...
...
storage/innobase/include/buf0types.h
View file @
20b8e5a0
...
...
@@ -148,6 +148,12 @@ class page_id_t
constexpr
ulonglong
raw
()
const
{
return
m_id
;
}
/** Flag the page identifier as corrupted. */
void
set_corrupted
()
{
m_id
=
~
0ULL
;
}
/** @return whether the page identifier belongs to a corrupted page */
constexpr
bool
is_corrupted
()
const
{
return
m_id
==
~
0ULL
;
}
private:
/** The page identifier */
uint64_t
m_id
;
...
...
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