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
4360bd80
Commit
4360bd80
authored
Feb 10, 2012
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge fix for lp:910817: Race condition in kill_threads_for_user().
parents
6fa209f7
e76a0476
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
sql/sql_parse.cc
sql/sql_parse.cc
+13
-3
No files found.
sql/sql_parse.cc
View file @
4360bd80
...
...
@@ -7366,13 +7366,23 @@ static uint kill_threads_for_user(THD *thd, LEX_USER *user,
if
(
!
threads_to_kill
.
is_empty
())
{
List_iterator_fast
<
THD
>
it
(
threads_to_kill
);
THD
*
ptr
;
while
((
ptr
=
it
++
))
THD
*
next_ptr
;
THD
*
ptr
=
it
++
;
do
{
ptr
->
awake
(
kill_signal
);
/*
Careful here: The list nodes are allocated on the memroots of the
THDs to be awakened.
But those THDs may be terminated and deleted as soon as we release
LOCK_thd_data, which will make the list nodes invalid.
Since the operation "it++" dereferences the "next" pointer of the
previous list node, we need to do this while holding LOCK_thd_data.
*/
next_ptr
=
it
++
;
pthread_mutex_unlock
(
&
ptr
->
LOCK_thd_data
);
(
*
rows
)
++
;
}
}
while
((
ptr
=
next_ptr
));
}
DBUG_RETURN
(
0
);
}
...
...
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