From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YT99z-0004MZ-2o for qemu-devel@nongnu.org; Wed, 04 Mar 2015 08:16:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YT99u-0005Yl-NV for qemu-devel@nongnu.org; Wed, 04 Mar 2015 08:16:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42723) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YT99u-0005Ya-FZ for qemu-devel@nongnu.org; Wed, 04 Mar 2015 08:16:18 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t24DGHYg001326 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 4 Mar 2015 08:16:18 -0500 Date: Wed, 4 Mar 2015 14:01:33 +0100 From: Kevin Wolf Message-ID: <20150304130133.GM3465@noname.str.redhat.com> References: <1425459851-16819-1-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1425459851-16819-1-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH] block/null: Latency simulation by adding new option "latency_ns" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: qemu-devel@nongnu.org, Stefan Hajnoczi Am 04.03.2015 um 10:04 hat Fam Zheng geschrieben: > Aio context switch should just work because the requests will be > drained, so the scheduled timer(s) on the old context will be freed. > > Signed-off-by: Fam Zheng You should probably also add co_aio_sleep_ns() calls to null_co_readv/write/flush(). > block/null.c | 34 ++++++++++++++++++++++++++++++++-- > 1 file changed, 32 insertions(+), 2 deletions(-) > > diff --git a/block/null.c b/block/null.c > index ec2bd27..af49525 100644 > --- a/block/null.c > +++ b/block/null.c > @@ -12,8 +12,11 @@ > > #include "block/block_int.h" > > +#define NULL_OPT_LATENCY "latency_ns" > + > typedef struct { > int64_t length; > + int64_t latency_ns; > } BDRVNullState; > > static QemuOptsList runtime_opts = { > @@ -30,6 +33,12 @@ static QemuOptsList runtime_opts = { > .type = QEMU_OPT_SIZE, > .help = "size of the null block", > }, > + { > + .name = NULL_OPT_LATENCY, > + .type = QEMU_OPT_NUMBER, > + .help = "nanoseconds (approximated) to wait " > + "before completing request", > + }, > { /* end of list */ } > }, > }; > @@ -44,6 +53,8 @@ static int null_file_open(BlockDriverState *bs, QDict *options, int flags, > qemu_opts_absorb_qdict(opts, options, &error_abort); > s->length = > qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 1 << 30); > + s->latency_ns = > + qemu_opt_get_number(opts, NULL_OPT_LATENCY, 0); s->latency_ns is signed, so I'd check for negative values. The rest looks good to me. Kevin