diff options
author | Sage Weil <sage@newdream.net> | 2009-11-09 21:12:16 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-11-09 21:12:16 -0800 |
commit | 6f62583cded2dd3fe9da633e1087ea1bab98d67d (patch) | |
tree | 27a7c63decd925532620d89e8606f6034e816703 /src/streamtest.cc | |
parent | b36dbd66d5308ddfd3b0e01e8e3190daa7e8f560 (diff) | |
parent | b051a2fd4a8f3959b86a836b50b7d46aedd057c9 (diff) | |
download | ceph-6f62583cded2dd3fe9da633e1087ea1bab98d67d.tar.gz |
Merge branch 'unstable' into auth
Conflicts:
src/Makefile.am
src/mkmonfs.cc
src/msg/SimpleMessenger.cc
Diffstat (limited to 'src/streamtest.cc')
-rw-r--r-- | src/streamtest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streamtest.cc b/src/streamtest.cc index 0923f11f5be..3fd8057c821 100644 --- a/src/streamtest.cc +++ b/src/streamtest.cc @@ -107,7 +107,7 @@ int main(int argc, const char **argv) } ObjectStore::Transaction ft; - ft.create_collection(0); + ft.create_collection(coll_t()); fs->apply_transaction(ft); utime_t now = g_clock.now(); @@ -121,7 +121,7 @@ int main(int argc, const char **argv) utime_t start = now; set_start(pos, now); ObjectStore::Transaction t; - t.write(0, poid, pos, bytes, bl); + t.write(coll_t(), poid, pos, bytes, bl); fs->apply_transaction(t, new C_Commit(pos)); now = g_clock.now(); set_ack(pos, now); |