From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: Tobias Geiger <tobias.geiger@vido.info>,
"xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: Degregated I/O Performance since 3.4 - Regression in 3.4?
Date: Mon, 23 Apr 2012 11:24:04 -0400 [thread overview]
Message-ID: <20120423152404.GD24481@phenom.dumpdata.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1204231240440.26786@kaball-desktop>
On Mon, Apr 23, 2012 at 12:53:03PM +0100, Stefano Stabellini wrote:
> On Mon, 23 Apr 2012, Tobias Geiger wrote:
> > Hello!
> >
> > i noticed a considerable drop in I/O Performance when using 3.4 (rc3 and rc4
> > tested) as Dom0 Kernel;
> >
> > With 3.3 i get over 100mb/s in a HVM DomU (win64) with PV Drivers
> > (gplpv_Vista2008x64_0.11.0.357.msi);
> > With 3.4 it drops to about a third of that.
> >
> > Xen Version is xen-unstable:
> > xen_changeset : Tue Apr 17 19:13:52 2012 +0100 25209:e6b20ec1824c
> >
> > Disk config line is:
> > disk = [ '/dev/vg_ssd/win7system,,hda' ]
> > - it uses blkback.
>
> I fail to see what could be the cause of the issue: nothing on the
> blkback side should affect performances significantly.
> You could try reverting the four patches to blkback that were applied
> between 3.3 and 3.4-rc3 just to make sure it is not a blkback
> regression:
>
> $ git shortlog v3.3..v3.4-rc3 drivers/block/xen-blkback
> Daniel De Graaf (2):
> xen/blkback: use grant-table.c hypercall wrappers
Hm.. Perhaps this patch fixes it a possible perf (I would think that
the compiler would have kept the result of the first call to vaddr(req, i)
somewhere.. but not sure) lost with the mentioned patch:
diff --git a/drivers/block/xen-blkback/blkback.c b/drivers/block/xen-blkback/blkback.c
index 73f196c..65dbadc 100644
--- a/drivers/block/xen-blkback/blkback.c
+++ b/drivers/block/xen-blkback/blkback.c
@@ -327,13 +327,15 @@ static void xen_blkbk_unmap(struct pending_req *req)
int ret;
for (i = 0; i < req->nr_pages; i++) {
+ unsigned long addr;
handle = pending_handle(req, i);
if (handle == BLKBACK_INVALID_HANDLE)
continue;
- gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
+ addr = vaddr(req, i);
+ gnttab_set_unmap_op(&unmap[invcount], addr,
GNTMAP_host_map, handle);
pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
- pages[invcount] = virt_to_page(vaddr(req, i));
+ pages[invcount] = virt_to_page(addr);
invcount++;
}
> xen/blkback: Enable blkback on HVM guests
>
> Konrad Rzeszutek Wilk (2):
> xen/blkback: Squash the discard support for 'file' and 'phy' type.
> xen/blkback: Make optional features be really optional.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2012-04-23 15:24 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-23 10:02 Degregated I/O Performance since 3.4 - Regression in 3.4? Tobias Geiger
2012-04-23 11:53 ` Stefano Stabellini
2012-04-23 15:24 ` Konrad Rzeszutek Wilk [this message]
2012-04-23 20:53 ` Tobias Geiger
2012-04-24 7:27 ` Jan Beulich
2012-04-24 12:09 ` Tobias Geiger
2012-04-24 12:52 ` Stefano Stabellini
2012-04-24 14:07 ` Tobias Geiger
2012-04-24 14:16 ` Stefano Stabellini
2012-04-24 16:30 ` Konrad Rzeszutek Wilk
2012-04-24 23:21 ` Tobias Geiger
2012-04-25 13:44 ` Stefano Stabellini
2012-04-25 13:57 ` Tobias Geiger
2012-04-25 15:05 ` Stefano Stabellini
2012-04-25 15:03 ` Tobias Geiger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120423152404.GD24481@phenom.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=tobias.geiger@vido.info \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).