rbd: don't log version to stdout
authorJens Axboe <axboe@fb.com>
Mon, 13 Mar 2017 14:01:52 +0000 (08:01 -0600)
committerJens Axboe <axboe@fb.com>
Mon, 13 Mar 2017 14:01:52 +0000 (08:01 -0600)
This screws up json/csv output for no useful reason.

Signed-off-by: Jens Axboe <axboe@fb.com>
engines/rbd.c

index 62f0b2e27d3c48f1eceb1c2dc3709d54a500b729..829e41a232250a96cb0aaed401a97b7516786061 100644 (file)
@@ -566,13 +566,8 @@ static int fio_rbd_setup(struct thread_data *td)
        rbd_image_info_t info;
        struct fio_file *f;
        struct rbd_data *rbd = NULL;
-       int major, minor, extra;
        int r;
 
-       /* log version of librbd. No cluster connection required. */
-       rbd_version(&major, &minor, &extra);
-       log_info("rbd engine: RBD version: %d.%d.%d\n", major, minor, extra);
-
        /* allocate engine specific structure to deal with librbd. */
        r = _fio_setup_rbd_data(td, &rbd);
        if (r) {