From: Kevin Dalley Date: Mon, 7 Jul 2014 19:32:36 +0000 (-0700) Subject: common: seq_read_bench argument order changed X-Git-Tag: v0.84~66^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=08fa16bab4c9e267a448e3b4dcbacd7959ac4b64;p=ceph.git common: seq_read_bench argument order changed The argument order for seq_read_bench in src/common/obj_bencher.h has been changed to match the argument order in obj_bencher.cc Calls to seq_read_bench already use the correct order. seq_read_bench also matches the order of rand_read_bench and write_bench Signed-off-by: Kevin Dalley --- diff --git a/src/common/obj_bencher.h b/src/common/obj_bencher.h index 216e265ba6aa..ffdd64162b1a 100644 --- a/src/common/obj_bencher.h +++ b/src/common/obj_bencher.h @@ -64,7 +64,7 @@ protected: int fetch_bench_metadata(const std::string& metadata_file, int* object_size, int* num_objects, int* prevPid); int write_bench(int secondsToRun, int maxObjects, int concurrentios, const string& run_name_meta); - int seq_read_bench(int secondsToRun, int concurrentios, int num_objects, int writePid); + int seq_read_bench(int secondsToRun, int num_objects, int concurrentios, int writePid); int rand_read_bench(int secondsToRun, int num_objects, int concurrentios, int writePid); int clean_up(int num_objects, int prevPid, int concurrentios);