From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40980) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VF3dX-0008Sn-0X for qemu-devel@nongnu.org; Thu, 29 Aug 2013 10:55:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VF3dR-0001LM-Vm for qemu-devel@nongnu.org; Thu, 29 Aug 2013 10:55:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33061) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VF3dR-0001LA-KF for qemu-devel@nongnu.org; Thu, 29 Aug 2013 10:55:45 -0400 Message-ID: <521F60E7.80604@redhat.com> Date: Thu, 29 Aug 2013 16:55:35 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <521DFDF6.3070507@redhat.com> <20130828135143.GC6170@irqsave.net> <521E0247.7060202@redhat.com> <20130828140524.GD6170@irqsave.net> <521E03B6.2060205@redhat.com> <20130828142635.GE6170@irqsave.net> <521E3F9E.8010808@rdsoftware.de> <20130828184042.GG6170@irqsave.net> <521E4E06.3090708@rdsoftware.de> <609018151.5992.1377762833839.open-xchange@email.1und1.de> <20130829092530.GA5142@irqsave.net> <715136554.32957.1377787911389.open-xchange@email.1und1.de> In-Reply-To: <715136554.32957.1377787911389.open-xchange@email.1und1.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] Boot Problems Windows XP guest List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Erik Rull Cc: =?UTF-8?B?QmVub8OudCBDYW5ldA==?= , Stefan Hajnoczi , "qemu-devel@nongnu.org" Il 29/08/2013 16:51, Erik Rull ha scritto: >=20 >=20 >> On August 29, 2013 at 11:25 AM Beno=C3=AEt Canet wrote: >> >> >>> My commandline section is (I played with bps between 0.5 and 2.0 MB/s= ec and >>> iops >>> with 1000 and 500): >>> -drive file=3D/dev/sda2,cache=3Dnone,bps=3D548576,bps_max=3D1,iops_ma= x=3D1000 >>> Within qemu it looks like that: >>> QEMU 1.6.50 monitor - type 'help' for more information >>> (qemu) info block >>> ide0-hd0: /dev/sda2 (raw) >>> I/O throttling: bps=3D548576 bps_rd=3D0 bps_wr=3D0 bps_max=3D1 = bps_rd_max=3D0 >>> bps_wr_max=3D0 iops=3D0 iops_rd=3D0 iops_wr=3D0 iops_max=3D1000 iops_= rd_max=3D0 >>> iops_wr_max=3D0 iops_size=3D0 >>> (qemu) >> >> Why did you set iops_max but not iops ? >> >> Best regards >> >> Beno=C3=AEt >> >=20 > Good point, I added that, but it still keeps rebooting: > (qemu) info block > ide0-hd0: /dev/sda2 (raw) > I/O throttling: bps=3D548576 bps_rd=3D0 bps_wr=3D0 bps_max=3D1 bp= s_rd_max=3D0 > bps_wr_max=3D0 iops=3D500 iops_rd=3D0 iops_wr=3D0 iops_max=3D500 iops_r= d_max=3D0 > iops_wr_max=3D0 iops_size=3D0 Too bad. But iops_max w/o iops makes sense: it means no more than 1000 iops will be in flight at the same time. Note that "s" is a plural in "*s_max", not "per seconds". :) You could try iops_max=3D1 and make it higher if it works. Paolo