List:Internals« Previous MessageNext Message »
From:jonas Date:September 14 2005 2:21pm
Subject:bk commit into 5.1 tree (jonas:1.2013)
View as plain text  
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.2013 05/09/14 14:21:50 jonas@eel.(none) +1 -0
  ndb diskdata
    remove O_DIRECT from BACKUP (as it doesnt currently work)

  storage/ndb/src/kernel/blocks/backup/Backup.cpp
    1.50 05/09/14 14:21:46 jonas@eel.(none) +2 -4
    remove O_DIRECT from LCP (as it doesnt currently work)

# 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:	eel.(none)
# Root:	/home/jonas/src/mysql-5.1-ndb-dd

--- 1.49/storage/ndb/src/kernel/blocks/backup/Backup.cpp	2005-09-11 21:14:31 +02:00
+++ 1.50/storage/ndb/src/kernel/blocks/backup/Backup.cpp	2005-09-14 14:21:46 +02:00
@@ -2524,8 +2524,7 @@
     FsOpenReq::OM_WRITEONLY | 
     FsOpenReq::OM_TRUNCATE |
     FsOpenReq::OM_CREATE | 
-    FsOpenReq::OM_APPEND |
-    FsOpenReq::OM_DIRECT;
+    FsOpenReq::OM_APPEND;
   FsOpenReq::v2_setCount(req->fileNumber, 0xFFFFFFFF);
   
   /**
@@ -4646,8 +4645,7 @@
     FsOpenReq::OM_WRITEONLY | 
     FsOpenReq::OM_TRUNCATE |
     FsOpenReq::OM_CREATE | 
-    FsOpenReq::OM_APPEND |
-    FsOpenReq::OM_SYNC;
+    FsOpenReq::OM_APPEND;
   FsOpenReq::v2_setCount(req->fileNumber, 0xFFFFFFFF);
   
   TablePtr tabPtr;
Thread
bk commit into 5.1 tree (jonas:1.2013)jonas14 Sep