List:Commits« Previous MessageNext Message »
From:tomas Date:May 28 2007 12:56pm
Subject:bk commit into 5.0 tree (tomas:1.2501) BUG#28653
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of tomas. When tomas 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@stripped, 2007-05-28 12:56:48+02:00, tomas@stripped +2 -0
  Bug #28653    Fast GCP + high load + high RedoBuffer causes ndbrequire
  - correction, backport to 5.0

  ndb/src/kernel/blocks/dblqh/DblqhInit.cpp@stripped, 2007-05-28 12:56:46+02:00,
tomas@stripped +5 -0
    Bug #28653    Fast GCP + high load + high RedoBuffer causes ndbrequire
    - correction, backport to 5.0

  ndb/src/kernel/blocks/dblqh/DblqhMain.cpp@stripped, 2007-05-28 12:56:46+02:00,
tomas@stripped +0 -5
    Bug #28653    Fast GCP + high load + high RedoBuffer causes ndbrequire
    - correction, backport to 5.0

# 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:	tomas
# Host:	whalegate.ndb.mysql.com
# Root:	/home/tomas/mysql-5.0-ndb

--- 1.19/ndb/src/kernel/blocks/dblqh/DblqhInit.cpp	2007-05-24 21:01:59 +02:00
+++ 1.20/ndb/src/kernel/blocks/dblqh/DblqhInit.cpp	2007-05-28 12:56:46 +02:00
@@ -338,6 +338,11 @@
   
   initData();
 
+  /* maximum number of log file operations */
+  clfoFileSize = clogPageFileSize;
+  if (clfoFileSize < ZLFO_MIN_FILE_SIZE)
+    clfoFileSize = ZLFO_MIN_FILE_SIZE;
+
 #ifdef VM_TRACE
   {
     void* tmp[] = { 

--- 1.107/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp	2007-05-24 21:01:59 +02:00
+++ 1.108/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp	2007-05-28 12:56:46 +02:00
@@ -7251,11 +7251,6 @@
     return;
   }
 
-  /* maximum number of log file operations */
-  clfoFileSize = clogPageFileSize;
-  if (clfoFileSize < ZLFO_MIN_FILE_SIZE)
-    clfoFileSize = ZLFO_MIN_FILE_SIZE;
-
   // Update timer on tcConnectRecord
   tcConnectptr.p->tcTimer = cLqhTimeOutCount;
   init_acc_ptr_list(scanptr.p);
Thread
bk commit into 5.0 tree (tomas:1.2501) BUG#28653tomas28 May