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
50160216
Commit
50160216
authored
Dec 04, 2015
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-9156 : Fix tp_add_connection()'s error handling
Avoid possible my_thread_end() in the main polling thread.
parent
ba8e630d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
12 deletions
+19
-12
sql/threadpool.h
sql/threadpool.h
+1
-0
sql/threadpool_common.cc
sql/threadpool_common.cc
+15
-9
sql/threadpool_unix.cc
sql/threadpool_unix.cc
+1
-1
sql/threadpool_win.cc
sql/threadpool_win.cc
+2
-2
No files found.
sql/threadpool.h
View file @
50160216
...
@@ -27,6 +27,7 @@ extern uint threadpool_oversubscribe; /* Maximum active threads in group */
...
@@ -27,6 +27,7 @@ extern uint threadpool_oversubscribe; /* Maximum active threads in group */
/* Common thread pool routines, suitable for different implementations */
/* Common thread pool routines, suitable for different implementations */
extern
void
threadpool_cleanup_connection
(
THD
*
thd
);
extern
void
threadpool_remove_connection
(
THD
*
thd
);
extern
void
threadpool_remove_connection
(
THD
*
thd
);
extern
int
threadpool_process_request
(
THD
*
thd
);
extern
int
threadpool_process_request
(
THD
*
thd
);
extern
int
threadpool_add_connection
(
THD
*
thd
);
extern
int
threadpool_add_connection
(
THD
*
thd
);
...
...
sql/threadpool_common.cc
View file @
50160216
...
@@ -168,22 +168,28 @@ int threadpool_add_connection(THD *thd)
...
@@ -168,22 +168,28 @@ int threadpool_add_connection(THD *thd)
return
retval
;
return
retval
;
}
}
/*
threadpool_cleanup_connection() does the bulk of connection shutdown work.
Usually called from threadpool_remove_connection(), but rarely it might
be called also in the main polling thread if connection initialization fails.
*/
void
threadpool_cleanup_connection
(
THD
*
thd
)
{
thd
->
net
.
reading_or_writing
=
0
;
end_connection
(
thd
);
close_connection
(
thd
,
0
);
unlink_thd
(
thd
);
mysql_cond_broadcast
(
&
COND_thread_count
);
}
void
threadpool_remove_connection
(
THD
*
thd
)
void
threadpool_remove_connection
(
THD
*
thd
)
{
{
Worker_thread_context
worker_context
;
Worker_thread_context
worker_context
;
worker_context
.
save
();
worker_context
.
save
();
thread_attach
(
thd
);
thread_attach
(
thd
);
thd
->
net
.
reading_or_writing
=
0
;
end_connection
(
thd
);
close_connection
(
thd
,
0
);
unlink_thd
(
thd
);
mysql_cond_broadcast
(
&
COND_thread_count
);
threadpool_cleanup_connection
(
thd
);
/*
/*
Free resources associated with this connection:
Free resources associated with this connection:
mysys thread_var and PSI thread.
mysys thread_var and PSI thread.
...
...
sql/threadpool_unix.cc
View file @
50160216
...
@@ -1255,7 +1255,7 @@ void tp_add_connection(THD *thd)
...
@@ -1255,7 +1255,7 @@ void tp_add_connection(THD *thd)
else
else
{
{
/* Allocation failed */
/* Allocation failed */
threadpool_
remove
_connection
(
thd
);
threadpool_
cleanup
_connection
(
thd
);
}
}
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
}
...
...
sql/threadpool_win.cc
View file @
50160216
...
@@ -667,7 +667,7 @@ void tp_add_connection(THD *thd)
...
@@ -667,7 +667,7 @@ void tp_add_connection(THD *thd)
if
(
!
con
)
if
(
!
con
)
{
{
tp_log_warning
(
"Allocation failed"
,
"tp_add_connection"
);
tp_log_warning
(
"Allocation failed"
,
"tp_add_connection"
);
threadpool_
remove
_connection
(
thd
);
threadpool_
cleanup
_connection
(
thd
);
return
;
return
;
}
}
...
@@ -685,7 +685,7 @@ void tp_add_connection(THD *thd)
...
@@ -685,7 +685,7 @@ void tp_add_connection(THD *thd)
else
else
{
{
/* Likely memory pressure */
/* Likely memory pressure */
login_callback
(
NULL
,
con
,
NULL
);
/* deletes connection if something goes wrong */
threadpool_cleanup_connection
(
thd
);
}
}
}
}
...
...
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