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
b5c14cf8
Commit
b5c14cf8
authored
Aug 11, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix uninit variable bug "surfaced" by removing mem init in SimulatedBlock
parent
a15b4e51
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
55 deletions
+30
-55
ndb/include/kernel/signaldata/StartInfo.hpp
ndb/include/kernel/signaldata/StartInfo.hpp
+1
-1
ndb/src/kernel/blocks/dbdih/Dbdih.hpp
ndb/src/kernel/blocks/dbdih/Dbdih.hpp
+1
-2
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+28
-25
ndb/src/kernel/vm/SimulatedBlock.cpp
ndb/src/kernel/vm/SimulatedBlock.cpp
+0
-27
No files found.
ndb/include/kernel/signaldata/StartInfo.hpp
View file @
b5c14cf8
...
...
@@ -78,7 +78,7 @@ class StartInfoRef {
Uint32
errorCode
;
public:
STATIC_CONST
(
SignalLength
=
2
);
STATIC_CONST
(
SignalLength
=
3
);
};
#endif
ndb/src/kernel/blocks/dbdih/Dbdih.hpp
View file @
b5c14cf8
...
...
@@ -269,7 +269,7 @@ public:
};
struct
NodeRecord
{
NodeRecord
()
{
m_nodefailSteps
.
clear
();}
NodeRecord
()
;
enum
NodeStatus
{
NOT_IN_CLUSTER
=
0
,
...
...
@@ -1127,7 +1127,6 @@ private:
void
setAllowNodeStart
(
Uint32
nodeId
,
bool
newState
);
bool
getNodeCopyCompleted
(
Uint32
nodeId
);
void
setNodeCopyCompleted
(
Uint32
nodeId
,
bool
newState
);
void
initNodeState
(
NodeRecordPtr
regNodePtr
);
bool
checkNodeAlive
(
Uint32
nodeId
);
// Initialisation
...
...
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
b5c14cf8
...
...
@@ -1982,9 +1982,11 @@ void Dbdih::execSTART_INFOREQ(Signal* signal)
(
ERROR_INSERTED
(
7124
)))
{
jam
();
StartInfoRef
*
const
ref
=
(
StartInfoRef
*
)
&
signal
->
theData
[
0
];
ref
->
startingNodeId
=
startNode
;
ref
->
sendingNodeId
=
cownNodeId
;
ref
->
errorCode
=
ZNODE_START_DISALLOWED_ERROR
;
sendSignal
(
cmasterdihref
,
GSN_START_INFOREF
,
signal
,
2
,
JBB
);
sendSignal
(
cmasterdihref
,
GSN_START_INFOREF
,
signal
,
StartInfoRef
::
SignalLength
,
JBB
);
return
;
}
//if
setNodeStatus
(
startNode
,
NodeRecord
::
STARTING
);
...
...
@@ -2054,7 +2056,7 @@ void Dbdih::execINCL_NODEREQ(Signal* signal)
Sysfile
::
ActiveStatus
TsaveState
=
nodePtr
.
p
->
activeStatus
;
Uint32
TnodeGroup
=
nodePtr
.
p
->
nodeGroup
;
initNodeState
(
nodePtr
);
new
(
nodePtr
.
p
)
NodeRecord
(
);
nodePtr
.
p
->
nodeGroup
=
TnodeGroup
;
nodePtr
.
p
->
activeStatus
=
TsaveState
;
nodePtr
.
p
->
nodeStatus
=
NodeRecord
::
ALIVE
;
...
...
@@ -10906,27 +10908,6 @@ void Dbdih::initFragstore(FragmentstorePtr fragPtr)
fragPtr
.
p
->
distributionKey
=
0
;
}
//Dbdih::initFragstore()
void
Dbdih
::
initNodeState
(
NodeRecordPtr
nodePtr
)
{
nodePtr
.
p
->
gcpstate
=
NodeRecord
::
READY
;
nodePtr
.
p
->
activeStatus
=
Sysfile
::
NS_NotDefined
;
nodePtr
.
p
->
recNODE_FAILREP
=
ZFALSE
;
nodePtr
.
p
->
nodeGroup
=
ZNIL
;
nodePtr
.
p
->
dbtcFailCompleted
=
ZTRUE
;
nodePtr
.
p
->
dbdictFailCompleted
=
ZTRUE
;
nodePtr
.
p
->
dbdihFailCompleted
=
ZTRUE
;
nodePtr
.
p
->
dblqhFailCompleted
=
ZTRUE
;
nodePtr
.
p
->
noOfStartedChkpt
=
0
;
nodePtr
.
p
->
noOfQueuedChkpt
=
0
;
nodePtr
.
p
->
lcpStateAtTakeOver
=
(
MasterLCPConf
::
State
)
255
;
nodePtr
.
p
->
activeTabptr
=
RNIL
;
nodePtr
.
p
->
nodeStatus
=
NodeRecord
::
NOT_IN_CLUSTER
;
nodePtr
.
p
->
useInTransactions
=
false
;
nodePtr
.
p
->
copyCompleted
=
false
;
}
//Dbdih::initNodeState()
/*************************************************************************/
/* */
/* MODULE: INIT_RESTART_INFO */
...
...
@@ -11175,7 +11156,7 @@ void Dbdih::initialiseRecordsLab(Signal* signal,
NodeRecordPtr
nodePtr
;
for
(
nodePtr
.
i
=
0
;
nodePtr
.
i
<
MAX_NDB_NODES
;
nodePtr
.
i
++
)
{
ptrAss
(
nodePtr
,
nodeRecord
);
initNodeState
(
nodePtr
);
new
(
nodePtr
.
p
)
NodeRecord
(
);
}
//for
break
;
}
...
...
@@ -11535,7 +11516,7 @@ void Dbdih::makePrnList(ReadNodesConf * readNodes, Uint32 nodeArray[])
jam
();
nodePtr
.
i
=
nodeArray
[
i
];
ptrCheckGuard
(
nodePtr
,
MAX_NDB_NODES
,
nodeRecord
);
initNodeState
(
nodePtr
);
new
(
nodePtr
.
p
)
NodeRecord
(
);
if
(
NodeBitmask
::
get
(
readNodes
->
inactiveNodes
,
nodePtr
.
i
)
==
false
){
jam
();
nodePtr
.
p
->
nodeStatus
=
NodeRecord
::
ALIVE
;
...
...
@@ -14173,3 +14154,25 @@ bool Dbdih::isActiveMaster()
{
return
((
reference
()
==
cmasterdihref
)
&&
(
cmasterState
==
MASTER_ACTIVE
));
}
//Dbdih::isActiveMaster()
Dbdih
::
NodeRecord
::
NodeRecord
(){
m_nodefailSteps
.
clear
();
gcpstate
=
NodeRecord
::
READY
;
activeStatus
=
Sysfile
::
NS_NotDefined
;
recNODE_FAILREP
=
ZFALSE
;
nodeGroup
=
ZNIL
;
dbtcFailCompleted
=
ZTRUE
;
dbdictFailCompleted
=
ZTRUE
;
dbdihFailCompleted
=
ZTRUE
;
dblqhFailCompleted
=
ZTRUE
;
noOfStartedChkpt
=
0
;
noOfQueuedChkpt
=
0
;
lcpStateAtTakeOver
=
(
MasterLCPConf
::
State
)
255
;
activeTabptr
=
RNIL
;
nodeStatus
=
NodeRecord
::
NOT_IN_CLUSTER
;
useInTransactions
=
false
;
copyCompleted
=
false
;
allowNodeStart
=
true
;
}
ndb/src/kernel/vm/SimulatedBlock.cpp
View file @
b5c14cf8
...
...
@@ -660,33 +660,6 @@ SimulatedBlock::allocRecord(const char * type, size_t s, size_t n)
snprintf
(
buf2
,
sizeof
(
buf2
),
"Requested: %ux%u = %u bytes"
,
(
Uint32
)
s
,
(
Uint32
)
n
,
(
Uint32
)
size
);
ERROR_SET
(
fatal
,
ERR_MEMALLOC
,
buf1
,
buf2
);
}
#ifdef NDB_DEBUG_FULL
// Set the allocated memory to zero
#ifndef NDB_PURIFY
#if defined NDB_OSE
int
pages
=
(
size
/
4096
);
if
((
size
%
4096
)
!=
0
)
pages
++
;
char
*
p2
=
(
char
*
)
p
;
for
(
int
i
=
0
;
i
<
pages
;
i
++
){
memset
(
p2
,
0
,
4096
);
p2
=
p2
+
4096
;
}
#elif 1
/**
* This code should be enabled in order to find logical errors and not
* initalised errors in the kernel.
*
* NOTE! It's not just "uninitialised errors" that are found by doing this
* it will also find logical errors that have been hidden by all the zeros.
*/
memset
(
p
,
0xF1
,
size
);
#endif
#endif
#endif
}
return
p
;
}
...
...
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