| 
         
xen-devel
RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver
 
| 
To:  | 
"MaoXiaoyun" <tinnycloud@xxxxxxxxxxx>,	<paul.durrant@xxxxxxxxxx> | 
 
| 
Subject:  | 
RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver | 
 
| 
From:  | 
"James Harper" <james.harper@xxxxxxxxxxxxxxxx> | 
 
| 
Date:  | 
Sun, 13 Mar 2011 10:15:44 +1100 | 
 
| 
Cc:  | 
xen devel <xen-devel@xxxxxxxxxxxxxxxxxxx> | 
 
| 
Delivery-date:  | 
Sat, 12 Mar 2011 15:16:49 -0800 | 
 
| 
Envelope-to:  | 
www-data@xxxxxxxxxxxxxxxxxxx | 
 
| 
In-reply-to:  | 
<BLU157-w40A631DA58C4F38FA6AC09DACB0@xxxxxxx> | 
 
| 
List-help:  | 
<mailto:xen-devel-request@lists.xensource.com?subject=help> | 
 
| 
List-id:  | 
Xen developer discussion <xen-devel.lists.xensource.com> | 
 
| 
List-post:  | 
<mailto:xen-devel@lists.xensource.com> | 
 
| 
List-subscribe:  | 
<http://lists.xensource.com/mailman/listinfo/xen-devel>,	<mailto:xen-devel-request@lists.xensource.com?subject=subscribe> | 
 
| 
List-unsubscribe:  | 
<http://lists.xensource.com/mailman/listinfo/xen-devel>,	<mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe> | 
 
| 
References:  | 
<BLU157-w6170D9B9C6DC4E4CF04C2FDAC90@xxxxxxx>,	<D271C3A4-9B27-4E08-A92A-D55A811736EC@xxxxxxxxxxxxxxxx><BLU157-w82233DE21FFA3AC07FCC3DAC90@xxxxxxx>,	<AEC6C66638C05B468B556EA548C1A77D01C55DCB@trantor><BLU157-w58A3CAD3FBB61D96ABE7CCDAC90@xxxxxxx>,	<AEC6C66638C05B468B556EA548C1A77D01C55DCF@trantor><BLU157-w54789B64D3FF1F57924AD2DAC80@xxxxxxx>,	<AEC6C66638C05B468B556EA548C1A77D01C55E87@trantor>,	<291EDFCB1E9E224A99088639C47620228E936E1A88@xxxxxxxxxxxxxxxxxxxxxxxxx>,	<AEC6C66638C05B468B556EA548C1A77D01C55E8E@trantor>,	<291EDFCB1E9E224A99088639C47620228E936E1A9A@xxxxxxxxxxxxxxxxxxxxxxxxx>,	<AEC6C66638C05B468B556EA548C1A77D01C55E91@trantor>,	<291EDFCB1E9E224A99088639C47620228E936E1AA0@xxxxxxxxxxxxxxxxxxxxxxxxx>	<BLU157-w40A631DA58C4F38FA6AC09DACB0@xxxxxxx> | 
 
| 
Sender:  | 
xen-devel-bounces@xxxxxxxxxxxxxxxxxxx | 
 
| 
Thread-index:  | 
AcvfqqfblFGOyE2AQHGuXl5MVRnf/gBYJvCw | 
 
| 
Thread-topic:  | 
[Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver | 
 
 
 
I've just pushed a bit of a rewrite of the rx path in gplpv. It's not
particularly well tested yet but I can't get it to crash. It should
scale much better with SMP too. I'm using more lock free data structures
so the lock's are held for much less time.
James
> -----Original Message-----
> From: MaoXiaoyun [mailto:tinnycloud@xxxxxxxxxxx]
> Sent: Friday, 11 March 2011 16:10
> To: paul.durrant@xxxxxxxxxx; James Harper
> Cc: xen devel
> Subject: RE: [Xen-devel] RE: Rather slow time of Pin in Windows with
GPL
> PVdriver
> 
> Hi Paul:
> 
>       Sorry I'm not fully follow your point.
>       One quick question is when you mention "pointless round robin",
which
> piece of code did you refer to?
> 
> thanks.
> 
> > From: Paul.Durrant@xxxxxxxxxx
> > To: james.harper@xxxxxxxxxxxxxxxx; tinnycloud@xxxxxxxxxxx
> > CC: xen-devel@xxxxxxxxxxxxxxxxxxx
> > Date: Thu, 10 Mar 2011 11:05:56 +0000
> > Subject: RE: [Xen-devel] RE: Rather slow time of Pin in Windows with
GPL
> PVdriver
> >
> > It's kind of pointless because you're always having to go to vCPU0's
shared
> info for the event info. so you're just going to keep pinging this
between
> caches all the time. Same holds true of data you access in your DPC if
it's
> constantly moving around. Better IMO to keep locality by default and
> distribute DPCs accessing distinct data explicitly.
> >
> > Paul
> >
> > > -----Original Message-----
> > > From: James Harper [mailto:james.harper@xxxxxxxxxxxxxxxx]
> > > Sent: 10 March 2011 10:41
> > > To: Paul Durrant; MaoXiaoyun
> > > Cc: xen devel
> > > Subject: RE: [Xen-devel] RE: Rather slow time of Pin in Windows
with
> > > GPL PVdriver
> > >
> > > >
> > > > Yeah, you're right. We have a patch in XenServer to just use the
> > > lowest
> > > > numbered vCPU but in unstable it still pointlessly round robins.
> > > Thus,
> > > if you
> > > > bind DPCs and don't set their importance up you will end up with
> > > them
> > > not
> > > > being immediately scheduled quite a lot of the time.
> > > >
> > >
> > > You say "pointlessly round robins"... why is the behaviour
> > > considered pointless? (assuming you don't use bound DPCs)
> > >
> > > I'm looking at my networking code and if I could schedule DPC's on
> > > processors on a round-robin basis (eg because the IRQ's are
> > > submitted on a round robin basis), one CPU could grab the rx ring
> > > lock, pull the data off the ring into local buffers, release the
> > > lock, then process the local buffers (build packets, submit to
NDIS,
> > > etc). While the first CPU is processing packets, another CPU can
> > > then start servicing the ring too.
> > >
> > > If Xen is changed to always send the IRQ to CPU zero then I'd have
> > > to start round-robining DPC's myself if I wanted to do it that
> > > way...
> > >
> > > Currently I'm suffering a bit from the small ring sizes not being
> > > able to hold enough buffers to keep packets flowing quickly in all
> > > situations.
> > >
> > > James
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
 
 |   
 
| <Prev in Thread] | 
Current Thread | 
[Next in Thread>
 |  
- RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL PV	driver, (continued)
 
- RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver, MaoXiaoyun
 - RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver,
James Harper <=
 
- RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver, James Harper
 - RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver, MaoXiaoyun
 - RE: [Xen-devel] RE: Rather slow time of Ping in Windows with GPL	PVdriver, James Harper
 - RE: [Xen-devel] RE: Rather slow time of Ping in Windows with GPL	PVdriver, MaoXiaoyun
 - RE: [Xen-devel] RE: Rather slow time of Ping in Windows with GPL	PVdriver, James Harper
 
- RE: [Xen-devel] RE: Rather slow time of Ping in Windows with GPL	PVdriver, Paul Durrant
 
- RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver, Paul Durrant
 - RE: [Xen-devel] RE: Rather slow time of Pin in Windows with GPL	PVdriver, James Harper
 
 
 |  
  
 | 
    |