From: Dmitry Yatsushkevich Date: Thu, 2 Apr 2015 18:21:05 +0000 (-0700) Subject: obj_bencher: aio_bench - rename op_size to object_size X-Git-Tag: v9.0.2~233^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a87ac4d36b86aa826afb990769831bfcf08ed3fa;p=ceph.git obj_bencher: aio_bench - rename op_size to object_size Rename aio_bench argument 'op_size' to 'object_size' to reflect the reality of how it is used. Signed-off-by: Dmitry Yatsushkevich --- diff --git a/src/common/obj_bencher.cc b/src/common/obj_bencher.cc index 4b6a790f2ef1..45a58ee00e55 100644 --- a/src/common/obj_bencher.cc +++ b/src/common/obj_bencher.cc @@ -170,12 +170,11 @@ void *ObjBencher::status_printer(void *_bencher) { int ObjBencher::aio_bench( int operation, int secondsToRun, int maxObjectsToCreate, - int concurrentios, int op_size, bool cleanup, const char* run_name) { + int concurrentios, int object_size, bool cleanup, const char* run_name) { if (concurrentios <= 0) return -EINVAL; - int object_size = op_size; int num_objects = 0; int r = 0; int prevPid = 0;