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
bfb06141
Commit
bfb06141
authored
Jan 30, 2007
by
tomas@poseidon.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
valgrind leak
- no injected events if operation is not connected - remove extra valgrind checks
parent
5f50de1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
39 deletions
+28
-39
sql/ha_ndbcluster_binlog.cc
sql/ha_ndbcluster_binlog.cc
+0
-13
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+28
-26
No files found.
sql/ha_ndbcluster_binlog.cc
View file @
bfb06141
...
...
@@ -19,10 +19,6 @@
#ifdef WITH_NDBCLUSTER_STORAGE_ENGINE
#include "ha_ndbcluster.h"
#ifdef HAVE_purify
#include <valgrind/memcheck.h>
#endif
#ifdef HAVE_NDB_BINLOG
#include "rpl_injector.h"
#include "rpl_filter.h"
...
...
@@ -3492,9 +3488,6 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
pthread_cond_signal
(
&
injector_cond
);
restart:
#ifdef HAVE_purify
VALGRIND_DO_LEAK_CHECK
;
#endif
/*
Main NDB Injector loop
*/
...
...
@@ -3587,9 +3580,6 @@ restart:
}
}
}
#ifdef HAVE_purify
VALGRIND_DO_LEAK_CHECK
;
#endif
{
static
char
db
[]
=
""
;
thd
->
db
=
db
;
...
...
@@ -3956,9 +3946,6 @@ restart:
goto
restart
;
}
err:
#ifdef HAVE_purify
VALGRIND_DO_LEAK_CHECK
;
#endif
sql_print_information
(
"Stopping Cluster Binlog"
);
DBUG_PRINT
(
"info"
,(
"Shutting down cluster binlog thread"
));
thd
->
proc_info
=
"Shutting down"
;
...
...
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
bfb06141
...
...
@@ -1611,17 +1611,24 @@ NdbEventBuffer::insert_event(NdbEventOperationImpl* impl,
Uint32
&
oid_ref
)
{
NdbEventOperationImpl
*
dropped_ev_op
=
m_dropped_ev_op
;
DBUG_PRINT
(
"info"
,
(
"gci: %u"
,
data
.
gci
));
do
{
do
{
oid_ref
=
impl
->
m_oid
;
insertDataL
(
impl
,
&
data
,
ptr
);
if
(
impl
->
m_node_bit_mask
.
get
(
0u
))
{
oid_ref
=
impl
->
m_oid
;
insertDataL
(
impl
,
&
data
,
ptr
);
}
NdbEventOperationImpl
*
blob_op
=
impl
->
theBlobOpList
;
while
(
blob_op
!=
NULL
)
{
oid_ref
=
blob_op
->
m_oid
;
insertDataL
(
blob_op
,
&
data
,
ptr
);
if
(
blob_op
->
m_node_bit_mask
.
get
(
0u
))
{
oid_ref
=
blob_op
->
m_oid
;
insertDataL
(
blob_op
,
&
data
,
ptr
);
}
blob_op
=
blob_op
->
m_next
;
}
}
while
((
impl
=
impl
->
m_next
));
...
...
@@ -1806,6 +1813,7 @@ NdbEventBuffer::insertDataL(NdbEventOperationImpl *op,
switch
(
operation
)
{
case
NdbDictionary
:
:
Event
::
_TE_NODE_FAILURE
:
DBUG_ASSERT
(
op
->
m_node_bit_mask
.
get
(
0u
)
!=
0
);
op
->
m_node_bit_mask
.
clear
(
SubTableData
::
getNdbdNodeId
(
ri
));
DBUG_PRINT
(
"info"
,
(
"_TE_NODE_FAILURE: m_ref_count: %u for op: %p id: %u"
,
...
...
@@ -1821,29 +1829,23 @@ NdbEventBuffer::insertDataL(NdbEventOperationImpl *op,
DBUG_RETURN_EVENT
(
0
);
break
;
case
NdbDictionary
:
:
Event
::
_TE_CLUSTER_FAILURE
:
if
(
op
->
m_node_bit_mask
.
get
(
0
))
{
op
->
m_node_bit_mask
.
clear
();
DBUG_ASSERT
(
op
->
m_ref_count
>
0
);
// remove kernel reference
// added in execute_nolock
op
->
m_ref_count
--
;
DBUG_PRINT
(
"info"
,
(
"_TE_CLUSTER_FAILURE: m_ref_count: %u for op: %p"
,
op
->
m_ref_count
,
op
));
if
(
op
->
theMainOp
)
{
DBUG_ASSERT
(
op
->
m_ref_count
==
0
);
DBUG_ASSERT
(
op
->
theMainOp
->
m_ref_count
>
0
);
// remove blob reference in main op
// added in execute_no_lock
op
->
theMainOp
->
m_ref_count
--
;
DBUG_PRINT
(
"info"
,
(
"m_ref_count: %u for op: %p"
,
op
->
theMainOp
->
m_ref_count
,
op
->
theMainOp
));
}
}
else
DBUG_ASSERT
(
op
->
m_node_bit_mask
.
get
(
0u
)
!=
0
);
op
->
m_node_bit_mask
.
clear
();
DBUG_ASSERT
(
op
->
m_ref_count
>
0
);
// remove kernel reference
// added in execute_nolock
op
->
m_ref_count
--
;
DBUG_PRINT
(
"info"
,
(
"_TE_CLUSTER_FAILURE: m_ref_count: %u for op: %p"
,
op
->
m_ref_count
,
op
));
if
(
op
->
theMainOp
)
{
DBUG_ASSERT
(
op
->
m_node_bit_mask
.
isclear
()
!=
0
);
DBUG_ASSERT
(
op
->
m_ref_count
==
0
);
DBUG_ASSERT
(
op
->
theMainOp
->
m_ref_count
>
0
);
// remove blob reference in main op
// added in execute_no_lock
op
->
theMainOp
->
m_ref_count
--
;
DBUG_PRINT
(
"info"
,
(
"m_ref_count: %u for op: %p"
,
op
->
theMainOp
->
m_ref_count
,
op
->
theMainOp
));
}
break
;
case
NdbDictionary
:
:
Event
::
_TE_STOP
:
...
...
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