#At file:///home/jonas/src/telco-6.2/
2714 Jonas Oreland 2008-11-03
ndb - kill a few windows warning
modified:
storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp
storage/ndb/src/mgmsrv/ConfigInfo.cpp
=== modified file 'storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp'
--- a/storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp 2008-03-19 12:57:01 +0000
+++ b/storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp 2008-11-03 08:30:23 +0000
@@ -308,7 +308,7 @@ pad32(Uint32 bytepos, Uint32 bitsused)
{
assert((bytepos & 3) == 0);
}
- Uint32 ret = 4 * ((bitsused + 31 >> 5)) +
+ Uint32 ret = 4 * ((bitsused + 31) >> 5) +
((bytepos + 3) & ~(Uint32)3);
return ret;
}
=== modified file 'storage/ndb/src/mgmsrv/ConfigInfo.cpp'
--- a/storage/ndb/src/mgmsrv/ConfigInfo.cpp 2008-02-20 15:15:31 +0000
+++ b/storage/ndb/src/mgmsrv/ConfigInfo.cpp 2008-11-03 08:30:23 +0000
@@ -3882,8 +3882,8 @@ add_node_connections(Vector<ConfigInfo::
if(!tmp->get("NodeId2", &nodeId2)) continue;
p_connections.put("", nodeId2, nodeId2);
- p_connections2.put("", nodeId1 + nodeId2<<16, nodeId1);
- p_connections2.put("", nodeId2 + nodeId1<<16, nodeId2);
+ p_connections2.put("", nodeId1 + (nodeId2<<16), nodeId1);
+ p_connections2.put("", nodeId2 + (nodeId1<<16), nodeId2);
}
Uint32 nNodes;
@@ -3915,7 +3915,7 @@ add_node_connections(Vector<ConfigInfo::
for (i= 0; p_db_nodes.get("", i, &nodeId1); i++){
for (Uint32 j= i+1;; j++){
if(!p_db_nodes.get("", j, &nodeId2)) break;
- if(!p_connections2.get("", nodeId1+nodeId2<<16, &dummy))
+ if(!p_connections2.get("", nodeId1+(nodeId2<<16), &dummy))
{
if (!add_a_connection(sections,ctx,nodeId1,nodeId2,opt_ndb_shm))
goto err;
| Thread |
|---|
| • bzr commit into mysql-5.1 branch (jonas:2714) | Jonas Oreland | 3 Nov |