From: Date: April 13 2006 8:47am Subject: bk commit into 5.1 tree (jonas:1.2312) BUG#18622 List-Archive: http://lists.mysql.com/commits/4899 X-Bug: 18622 Message-Id: <20060413064728.8AF663808BA@perch.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of jonas. When jonas does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2312 06/04/13 08:47:22 jonas@stripped +1 -0 ndb - bug#18622 Fix 4 replica bug in packLqhKeyReq, problem introduced by opt. nr. storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp 1.103 06/04/13 08:47:19 jonas@stripped +37 -15 Fix packLqhKeyReqLab when having full AI in this and appending gci/rowid (used to casue 23+3 = 26 in signal length) Note: This is a very ineffectice patch, but only for 4 replicas This will be fixed when sending lqhkeyreq as long signal (or even just attrinfo as long) # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: jonas # Host: perch.ndb.mysql.com # Root: /home/jonas/src/51-work --- 1.102/storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp 2006-03-24 08:58:37 +01:00 +++ 1.103/storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp 2006-04-13 08:47:19 +02:00 @@ -5016,12 +5016,13 @@ Uint32 nextNodeId = regTcPtr->nextReplica; Uint32 nextVersion = getNodeInfo(nextNodeId).m_version; + UintR TAiLen = regTcPtr->reclenAiLqhkey; UintR TapplAddressIndicator = (regTcPtr->nextSeqNoReplica == 0 ? 0 : 1); LqhKeyReq::setApplicationAddressFlag(Treqinfo, TapplAddressIndicator); LqhKeyReq::setInterpretedFlag(Treqinfo, regTcPtr->opExec); LqhKeyReq::setSeqNoReplica(Treqinfo, regTcPtr->nextSeqNoReplica); - LqhKeyReq::setAIInLqhKeyReq(Treqinfo, regTcPtr->reclenAiLqhkey); + LqhKeyReq::setAIInLqhKeyReq(Treqinfo, TAiLen); if (unlikely(nextVersion < NDBD_ROWID_VERSION)) { @@ -5124,22 +5125,32 @@ lqhKeyReq->variableData[nextPos + 0] = sig0; nextPos += LqhKeyReq::getGCIFlag(Treqinfo); - sig0 = regTcPtr->firstAttrinfo[0]; - sig1 = regTcPtr->firstAttrinfo[1]; - sig2 = regTcPtr->firstAttrinfo[2]; - sig3 = regTcPtr->firstAttrinfo[3]; - sig4 = regTcPtr->firstAttrinfo[4]; - UintR TAiLen = regTcPtr->reclenAiLqhkey; BlockReference lqhRef = calcLqhBlockRef(regTcPtr->nextReplica); + + if (likely(nextPos + TAiLen + LqhKeyReq::FixedSignalLength <= 25)) + { + jam(); + sig0 = regTcPtr->firstAttrinfo[0]; + sig1 = regTcPtr->firstAttrinfo[1]; + sig2 = regTcPtr->firstAttrinfo[2]; + sig3 = regTcPtr->firstAttrinfo[3]; + sig4 = regTcPtr->firstAttrinfo[4]; - lqhKeyReq->variableData[nextPos] = sig0; - lqhKeyReq->variableData[nextPos + 1] = sig1; - lqhKeyReq->variableData[nextPos + 2] = sig2; - lqhKeyReq->variableData[nextPos + 3] = sig3; - lqhKeyReq->variableData[nextPos + 4] = sig4; - - nextPos += TAiLen; - + lqhKeyReq->variableData[nextPos] = sig0; + lqhKeyReq->variableData[nextPos + 1] = sig1; + lqhKeyReq->variableData[nextPos + 2] = sig2; + lqhKeyReq->variableData[nextPos + 3] = sig3; + lqhKeyReq->variableData[nextPos + 4] = sig4; + + nextPos += TAiLen; + TAiLen = 0; + } + else + { + Treqinfo &= ~(Uint32)(RI_AI_IN_THIS_MASK << RI_AI_IN_THIS_SHIFT); + lqhKeyReq->requestInfo = Treqinfo; + } + sendSignal(lqhRef, GSN_LQHKEYREQ, signal, nextPos + LqhKeyReq::FixedSignalLength, JBB); if (regTcPtr->primKeyLen > 4) { @@ -5165,6 +5176,17 @@ signal->theData[0] = sig0; signal->theData[1] = sig1; signal->theData[2] = sig2; + + if (unlikely(nextPos + TAiLen + LqhKeyReq::FixedSignalLength > 25)) + { + jam(); + /** + * 4 replicas... + */ + memcpy(signal->theData+3, regTcPtr->firstAttrinfo, TAiLen << 2); + sendSignal(lqhRef, GSN_ATTRINFO, signal, 3 + TAiLen, JBB); + } + AttrbufPtr regAttrinbufptr; regAttrinbufptr.i = regTcPtr->firstAttrinbuf; while (regAttrinbufptr.i != RNIL) {