]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
filestore: fix arguments
authorSage Weil <sage@newdream.net>
Sat, 10 Mar 2012 01:07:02 +0000 (17:07 -0800)
committerSage Weil <sage@newdream.net>
Sat, 10 Mar 2012 01:07:02 +0000 (17:07 -0800)
From a change that was rebased out; missed this caller.

Signed-off-by: Sage Weil <sage@newdream.net>
src/os/FileStore.cc

index 4f8c3e55c84c1bc14d9c50a4042d19fb9933ffdd..763793593b48f401272d7866a63720697875a2a5 100644 (file)
@@ -4013,7 +4013,7 @@ int FileStore::_collection_rename(const coll_t &cid, const coll_t &ncid,
   if (ret >= 0) {
     int fd = ::open(new_coll, O_RDONLY);
     assert(fd >= 0);
-    _set_replay_guard(fd, NULL, NULL, spos);
+    _set_replay_guard(fd, spos);
   }
 
   dout(10) << "collection_rename '" << cid << "' to '" << ncid << "'"