From 8e093781f7995bb77ba0dca2835567a8a88972ec Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 22 May 2015 09:09:49 -0600 Subject: [PATCH] cconv: add allow_mounted_write Signed-off-by: Jens Axboe --- cconv.c | 2 ++ server.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cconv.c b/cconv.c index b0becb8b..44f17dab 100644 --- a/cconv.c +++ b/cconv.c @@ -73,6 +73,7 @@ void convert_thread_options_to_cpu(struct thread_options *o, string_to_cpu(&o->cgroup, top->cgroup); o->allow_create = le32_to_cpu(top->allow_create); + o->allow_mounted_write = le32_to_cpu(top->allow_mounted_write); o->td_ddir = le32_to_cpu(top->td_ddir); o->rw_seq = le32_to_cpu(top->rw_seq); o->kb_base = le32_to_cpu(top->kb_base); @@ -290,6 +291,7 @@ void convert_thread_options_to_net(struct thread_options_pack *top, string_to_net(top->cgroup, o->cgroup); top->allow_create = cpu_to_le32(o->allow_create); + top->allow_mounted_write = cpu_to_le32(o->allow_mounted_write); top->td_ddir = cpu_to_le32(o->td_ddir); top->rw_seq = cpu_to_le32(o->rw_seq); top->kb_base = cpu_to_le32(o->kb_base); diff --git a/server.h b/server.h index b94c2218..99447193 100644 --- a/server.h +++ b/server.h @@ -38,7 +38,7 @@ struct fio_net_cmd_reply { }; enum { - FIO_SERVER_VER = 45, + FIO_SERVER_VER = 46, FIO_SERVER_MAX_FRAGMENT_PDU = 1024, FIO_SERVER_MAX_CMD_MB = 2048, -- 2.25.1