qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qemu-iotests: Honor ${CACHEMODE} in 091
@ 2014-05-19 12:24 Fam Zheng
  2014-05-19 14:40 ` Kevin Wolf
  0 siblings, 1 reply; 4+ messages in thread
From: Fam Zheng @ 2014-05-19 12:24 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, Stefan Hajnoczi

We should allow testing this on tmpfs. Any cache setting in iotests
should try to obey $CACHEMODE.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 tests/qemu-iotests/091 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/qemu-iotests/091 b/tests/qemu-iotests/091
index 384b3ac..a7deea8 100755
--- a/tests/qemu-iotests/091
+++ b/tests/qemu-iotests/091
@@ -59,13 +59,13 @@ echo === Starting QEMU VM1 ===
 echo
 
 qemu_comm_method="monitor"
-_launch_qemu -drive file="${TEST_IMG}",cache=none,id=disk
+_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk
 h1=$QEMU_HANDLE
 
 echo
 echo === Starting QEMU VM2 ===
 echo
-_launch_qemu -drive file="${TEST_IMG}",cache=none,id=disk \
+_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk \
              -incoming "exec: cat '${MIG_FIFO}'"
 h2=$QEMU_HANDLE
 
-- 
1.9.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu-iotests: Honor ${CACHEMODE} in 091
  2014-05-19 12:24 [Qemu-devel] [PATCH] qemu-iotests: Honor ${CACHEMODE} in 091 Fam Zheng
@ 2014-05-19 14:40 ` Kevin Wolf
  2014-05-20  1:03   ` Fam Zheng
  0 siblings, 1 reply; 4+ messages in thread
From: Kevin Wolf @ 2014-05-19 14:40 UTC (permalink / raw)
  To: Fam Zheng; +Cc: qemu-devel, Stefan Hajnoczi

Am 19.05.2014 um 14:24 hat Fam Zheng geschrieben:
> We should allow testing this on tmpfs. Any cache setting in iotests
> should try to obey $CACHEMODE.
> 
> Signed-off-by: Fam Zheng <famz@redhat.com>

Should we set _default_cache_mode=none then at least? We should probably
also refuse to run with unsafe.

Kevin

>  tests/qemu-iotests/091 | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/qemu-iotests/091 b/tests/qemu-iotests/091
> index 384b3ac..a7deea8 100755
> --- a/tests/qemu-iotests/091
> +++ b/tests/qemu-iotests/091
> @@ -59,13 +59,13 @@ echo === Starting QEMU VM1 ===
>  echo
>  
>  qemu_comm_method="monitor"
> -_launch_qemu -drive file="${TEST_IMG}",cache=none,id=disk
> +_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk
>  h1=$QEMU_HANDLE
>  
>  echo
>  echo === Starting QEMU VM2 ===
>  echo
> -_launch_qemu -drive file="${TEST_IMG}",cache=none,id=disk \
> +_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk \
>               -incoming "exec: cat '${MIG_FIFO}'"
>  h2=$QEMU_HANDLE
>  
> -- 
> 1.9.2
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu-iotests: Honor ${CACHEMODE} in 091
  2014-05-19 14:40 ` Kevin Wolf
@ 2014-05-20  1:03   ` Fam Zheng
  2014-05-20  8:52     ` Kevin Wolf
  0 siblings, 1 reply; 4+ messages in thread
From: Fam Zheng @ 2014-05-20  1:03 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-devel, Stefan Hajnoczi

On Mon, 05/19 16:40, Kevin Wolf wrote:
> Am 19.05.2014 um 14:24 hat Fam Zheng geschrieben:
> > We should allow testing this on tmpfs. Any cache setting in iotests
> > should try to obey $CACHEMODE.
> > 
> > Signed-off-by: Fam Zheng <famz@redhat.com>
> 
> Should we set _default_cache_mode=none then at least?

Yes we should set a default. We use _default_cache_mode=writethrough elsewhere,
why use none over writethrough here?

>                                                       We should probably
> also refuse to run with unsafe.

OK, I'll add _supported_cache_modes.

Fam

> >  tests/qemu-iotests/091 | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/qemu-iotests/091 b/tests/qemu-iotests/091
> > index 384b3ac..a7deea8 100755
> > --- a/tests/qemu-iotests/091
> > +++ b/tests/qemu-iotests/091
> > @@ -59,13 +59,13 @@ echo === Starting QEMU VM1 ===
> >  echo
> >  
> >  qemu_comm_method="monitor"
> > -_launch_qemu -drive file="${TEST_IMG}",cache=none,id=disk
> > +_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk
> >  h1=$QEMU_HANDLE
> >  
> >  echo
> >  echo === Starting QEMU VM2 ===
> >  echo
> > -_launch_qemu -drive file="${TEST_IMG}",cache=none,id=disk \
> > +_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk \
> >               -incoming "exec: cat '${MIG_FIFO}'"
> >  h2=$QEMU_HANDLE
> >  
> > -- 
> > 1.9.2
> > 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu-iotests: Honor ${CACHEMODE} in 091
  2014-05-20  1:03   ` Fam Zheng
@ 2014-05-20  8:52     ` Kevin Wolf
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Wolf @ 2014-05-20  8:52 UTC (permalink / raw)
  To: Fam Zheng; +Cc: qemu-devel, Stefan Hajnoczi

Am 20.05.2014 um 03:03 hat Fam Zheng geschrieben:
> On Mon, 05/19 16:40, Kevin Wolf wrote:
> > Am 19.05.2014 um 14:24 hat Fam Zheng geschrieben:
> > > We should allow testing this on tmpfs. Any cache setting in iotests
> > > should try to obey $CACHEMODE.
> > > 
> > > Signed-off-by: Fam Zheng <famz@redhat.com>
> > 
> > Should we set _default_cache_mode=none then at least?
> 
> Yes we should set a default. We use _default_cache_mode=writethrough elsewhere,
> why use none over writethrough here?

I think the test case set cache=none originally because it's a migration
test and this is the recommended setting for migration. As long as we're
on localhost, writethrough should be fine, though, so it's probably not
strictly necessary.

> >                                                       We should probably
> > also refuse to run with unsafe.
> 
> OK, I'll add _supported_cache_modes.

Thanks.

Kevin

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-05-20  8:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-19 12:24 [Qemu-devel] [PATCH] qemu-iotests: Honor ${CACHEMODE} in 091 Fam Zheng
2014-05-19 14:40 ` Kevin Wolf
2014-05-20  1:03   ` Fam Zheng
2014-05-20  8:52     ` Kevin Wolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).