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
274afed7
Commit
274afed7
authored
Apr 04, 2006
by
igor@rurik.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0
into rurik.mysql.com:/home/igor/mysql-5.0
parents
c4e61aa4
93f1422a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
15 deletions
+16
-15
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+2
-1
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+14
-14
No files found.
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
274afed7
...
...
@@ -11840,7 +11840,8 @@ void Dbdih::newCrashedReplica(Uint32 nodeId, ReplicaRecordPtr ncrReplicaPtr)
/* THAT THE NEW REPLICA IS NOT STARTED YET AND REPLICA_LAST_GCI IS*/
/* SET TO -1 TO INDICATE THAT IT IS NOT DEAD YET. */
/*----------------------------------------------------------------------*/
arrGuard
(
ncrReplicaPtr
.
p
->
noCrashedReplicas
+
1
,
8
);
arrGuardErr
(
ncrReplicaPtr
.
p
->
noCrashedReplicas
+
1
,
8
,
NDBD_EXIT_MAX_CRASHED_REPLICAS
);
ncrReplicaPtr
.
p
->
replicaLastGci
[
ncrReplicaPtr
.
p
->
noCrashedReplicas
]
=
SYSFILE
->
lastCompletedGCI
[
nodeId
];
ncrReplicaPtr
.
p
->
noCrashedReplicas
=
ncrReplicaPtr
.
p
->
noCrashedReplicas
+
1
;
...
...
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
274afed7
...
...
@@ -3054,7 +3054,7 @@ void Dbtc::tckeyreq050Lab(Signal* signal)
/* NODE IF POSSIBLE TO AVOID UNNECESSARY COMMUNICATION */
/* WITH SIMPLE READS. */
/*-------------------------------------------------------------*/
arrGuard
(
tnoOfBackup
,
4
);
arrGuard
(
tnoOfBackup
,
MAX_REPLICAS
);
UintR
Tindex
;
UintR
TownNode
=
cownNodeid
;
for
(
Tindex
=
1
;
Tindex
<=
tnoOfBackup
;
Tindex
++
)
{
...
...
@@ -6325,7 +6325,7 @@ void Dbtc::timeOutFoundLab(Signal* signal, Uint32 TapiConPtr, Uint32 errCode)
jam
();
tcConnectptr
.
i
=
apiConnectptr
.
p
->
currentTcConnect
;
ptrCheckGuard
(
tcConnectptr
,
ctcConnectFilesize
,
tcConnectRecord
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
4
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
MAX_REPLICAS
);
hostptr
.
i
=
tcConnectptr
.
p
->
tcNodedata
[
apiConnectptr
.
p
->
currentReplicaNo
];
ptrCheckGuard
(
hostptr
,
chostFilesize
,
hostRecord
);
if
(
hostptr
.
p
->
hostStatus
==
HS_ALIVE
)
{
...
...
@@ -6351,7 +6351,7 @@ void Dbtc::timeOutFoundLab(Signal* signal, Uint32 TapiConPtr, Uint32 errCode)
jam
();
tcConnectptr
.
i
=
apiConnectptr
.
p
->
currentTcConnect
;
ptrCheckGuard
(
tcConnectptr
,
ctcConnectFilesize
,
tcConnectRecord
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
4
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
MAX_REPLICAS
);
hostptr
.
i
=
tcConnectptr
.
p
->
tcNodedata
[
apiConnectptr
.
p
->
currentReplicaNo
];
ptrCheckGuard
(
hostptr
,
chostFilesize
,
hostRecord
);
if
(
hostptr
.
p
->
hostStatus
==
HS_ALIVE
)
{
...
...
@@ -6377,7 +6377,7 @@ void Dbtc::timeOutFoundLab(Signal* signal, Uint32 TapiConPtr, Uint32 errCode)
jam
();
tcConnectptr
.
i
=
apiConnectptr
.
p
->
currentTcConnect
;
ptrCheckGuard
(
tcConnectptr
,
ctcConnectFilesize
,
tcConnectRecord
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
4
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
MAX_REPLICAS
);
hostptr
.
i
=
tcConnectptr
.
p
->
tcNodedata
[
apiConnectptr
.
p
->
currentReplicaNo
];
ptrCheckGuard
(
hostptr
,
chostFilesize
,
hostRecord
);
if
(
hostptr
.
p
->
hostStatus
==
HS_ALIVE
)
{
...
...
@@ -6552,7 +6552,7 @@ void Dbtc::sendAbortedAfterTimeout(Signal* signal, int Tcheck)
// in time to the ABORT signal we will declare it as dead.
/*------------------------------------------------------------------*/
UintR
Ti
=
0
;
arrGuard
(
tcConnectptr
.
p
->
noOfNodes
,
4
);
arrGuard
(
tcConnectptr
.
p
->
noOfNodes
,
MAX_REPLICAS
+
1
);
for
(
Ti
=
0
;
Ti
<
tcConnectptr
.
p
->
noOfNodes
;
Ti
++
)
{
jam
();
if
(
tcConnectptr
.
p
->
tcNodedata
[
Ti
]
!=
0
)
{
...
...
@@ -7545,7 +7545,7 @@ void Dbtc::execABORTCONF(Signal* signal)
warningReport
(
signal
,
18
);
return
;
}
//if
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
4
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
MAX_REPLICAS
);
if
(
tcConnectptr
.
p
->
tcNodedata
[
apiConnectptr
.
p
->
currentReplicaNo
]
!=
tnodeid
)
{
warningReport
(
signal
,
19
);
...
...
@@ -7561,7 +7561,7 @@ void Dbtc::toAbortHandlingLab(Signal* signal)
do
{
if
(
tcurrentReplicaNo
!=
(
Uint8
)
Z8NIL
)
{
jam
();
arrGuard
(
tcurrentReplicaNo
,
4
);
arrGuard
(
tcurrentReplicaNo
,
MAX_REPLICAS
);
const
LqhTransConf
::
OperationStatus
stat
=
(
LqhTransConf
::
OperationStatus
)
tcConnectptr
.
p
->
failData
[
tcurrentReplicaNo
];
...
...
@@ -7695,7 +7695,7 @@ void Dbtc::execCOMMITCONF(Signal* signal)
warningReport
(
signal
,
10
);
return
;
}
//if
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
4
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
MAX_REPLICAS
);
if
(
tcConnectptr
.
p
->
tcNodedata
[
apiConnectptr
.
p
->
currentReplicaNo
]
!=
tnodeid
)
{
warningReport
(
signal
,
11
);
...
...
@@ -7715,7 +7715,7 @@ void Dbtc::toCommitHandlingLab(Signal* signal)
do
{
if
(
tcurrentReplicaNo
!=
(
Uint8
)
Z8NIL
)
{
jam
();
arrGuard
(
tcurrentReplicaNo
,
4
);
arrGuard
(
tcurrentReplicaNo
,
MAX_REPLICAS
);
switch
(
tcConnectptr
.
p
->
failData
[
tcurrentReplicaNo
])
{
case
LqhTransConf
:
:
InvalidStatus
:
jam
();
...
...
@@ -7840,7 +7840,7 @@ void Dbtc::execCOMPLETECONF(Signal* signal)
warningReport
(
signal
,
14
);
return
;
}
//if
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
4
);
arrGuard
(
apiConnectptr
.
p
->
currentReplicaNo
,
MAX_REPLICAS
);
if
(
tcConnectptr
.
p
->
tcNodedata
[
apiConnectptr
.
p
->
currentReplicaNo
]
!=
tnodeid
)
{
warningReport
(
signal
,
15
);
...
...
@@ -7860,7 +7860,7 @@ void Dbtc::toCompleteHandlingLab(Signal* signal)
do
{
if
(
tcurrentReplicaNo
!=
(
Uint8
)
Z8NIL
)
{
jam
();
arrGuard
(
tcurrentReplicaNo
,
4
);
arrGuard
(
tcurrentReplicaNo
,
MAX_REPLICAS
);
switch
(
tcConnectptr
.
p
->
failData
[
tcurrentReplicaNo
])
{
case
LqhTransConf
:
:
InvalidStatus
:
jam
();
...
...
@@ -8150,6 +8150,7 @@ void Dbtc::setupFailData(Signal* signal)
case
OS_PREPARED
:
case
OS_COMMITTING
:
jam
();
arrGuard
(
tcConnectptr
.
p
->
lastReplicaNo
,
MAX_REPLICAS
);
for
(
tindex
=
0
;
tindex
<=
tcConnectptr
.
p
->
lastReplicaNo
;
tindex
++
)
{
jam
();
/*-------------------------------------------------------------------
...
...
@@ -8157,13 +8158,13 @@ void Dbtc::setupFailData(Signal* signal)
* IN THIS CASE ALL LQH'S ARE PREPARED AND WAITING FOR
* COMMIT/ABORT DECISION.
*------------------------------------------------------------------*/
arrGuard
(
tindex
,
4
);
tcConnectptr
.
p
->
failData
[
tindex
]
=
LqhTransConf
::
Prepared
;
}
//for
break
;
case
OS_COMMITTED
:
case
OS_COMPLETING
:
jam
();
arrGuard
(
tcConnectptr
.
p
->
lastReplicaNo
,
MAX_REPLICAS
);
for
(
tindex
=
0
;
tindex
<=
tcConnectptr
.
p
->
lastReplicaNo
;
tindex
++
)
{
jam
();
/*-------------------------------------------------------------------
...
...
@@ -8171,19 +8172,18 @@ void Dbtc::setupFailData(Signal* signal)
* IN THIS CASE ALL LQH'S ARE COMMITTED AND WAITING FOR
* COMPLETE MESSAGE.
*------------------------------------------------------------------*/
arrGuard
(
tindex
,
4
);
tcConnectptr
.
p
->
failData
[
tindex
]
=
LqhTransConf
::
Committed
;
}
//for
break
;
case
OS_COMPLETED
:
jam
();
arrGuard
(
tcConnectptr
.
p
->
lastReplicaNo
,
MAX_REPLICAS
);
for
(
tindex
=
0
;
tindex
<=
tcConnectptr
.
p
->
lastReplicaNo
;
tindex
++
)
{
jam
();
/*-------------------------------------------------------------------
* KEYDATA IS USED TO KEEP AN INDICATION OF STATE IN LQH.
* IN THIS CASE ALL LQH'S ARE COMPLETED.
*-------------------------------------------------------------------*/
arrGuard
(
tindex
,
4
);
tcConnectptr
.
p
->
failData
[
tindex
]
=
LqhTransConf
::
InvalidStatus
;
}
//for
break
;
...
...
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