netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] Revert "xen-netback: Aggregate TX unmap operations"
@ 2014-03-21 17:23 Zoltan Kiss
  2014-03-24  9:26 ` Ian Campbell
  0 siblings, 1 reply; 4+ messages in thread
From: Zoltan Kiss @ 2014-03-21 17:23 UTC (permalink / raw)
  To: ian.campbell, wei.liu2, xen-devel
  Cc: paul.durrant, netdev, linux-kernel, jonathan.davies, Zoltan Kiss

This reverts commit e9275f5e2df1b2098a8cc405d87b88b9affd73e6. This commit is the
last in the netback grant mapping series, and it tries to do more aggressive
aggreagtion of unmap operations. However practical use showed almost no
positive effect, whilst with certain frontends it causes significant performance
regression.

Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>
---
 drivers/net/xen-netback/common.h    |    2 --
 drivers/net/xen-netback/interface.c |    2 --
 drivers/net/xen-netback/netback.c   |   34 +---------------------------------
 3 files changed, 1 insertion(+), 37 deletions(-)

diff --git a/drivers/net/xen-netback/common.h b/drivers/net/xen-netback/common.h
index bef37be..0355f87 100644
--- a/drivers/net/xen-netback/common.h
+++ b/drivers/net/xen-netback/common.h
@@ -137,8 +137,6 @@ struct xenvif {
 	u16 dealloc_ring[MAX_PENDING_REQS];
 	struct task_struct *dealloc_task;
 	wait_queue_head_t dealloc_wq;
-	struct timer_list dealloc_delay;
-	bool dealloc_delay_timed_out;
 
 	/* Use kthread for guest RX */
 	struct task_struct *task;
diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c
index a6a8c15..23bb2f4 100644
--- a/drivers/net/xen-netback/interface.c
+++ b/drivers/net/xen-netback/interface.c
@@ -407,7 +407,6 @@ struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
 			  .desc = i };
 		vif->grant_tx_handle[i] = NETBACK_INVALID_HANDLE;
 	}
-	init_timer(&vif->dealloc_delay);
 
 	/*
 	 * Initialise a dummy MAC address. We choose the numerically
@@ -556,7 +555,6 @@ void xenvif_disconnect(struct xenvif *vif)
 	}
 
 	if (vif->dealloc_task) {
-		del_timer_sync(&vif->dealloc_delay);
 		kthread_stop(vif->dealloc_task);
 		vif->dealloc_task = NULL;
 	}
diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
index 5a8c4a4..1f595e5 100644
--- a/drivers/net/xen-netback/netback.c
+++ b/drivers/net/xen-netback/netback.c
@@ -133,11 +133,6 @@ static inline pending_ring_idx_t pending_index(unsigned i)
 	return i & (MAX_PENDING_REQS-1);
 }
 
-static inline pending_ring_idx_t nr_free_slots(struct xen_netif_tx_back_ring *ring)
-{
-	return ring->nr_ents -	(ring->sring->req_prod - ring->rsp_prod_pvt);
-}
-
 bool xenvif_rx_ring_slots_available(struct xenvif *vif, int needed)
 {
 	RING_IDX prod, cons;
@@ -1718,36 +1713,9 @@ static inline int tx_work_todo(struct xenvif *vif)
 	return 0;
 }
 
-static void xenvif_dealloc_delay(unsigned long data)
-{
-	struct xenvif *vif = (struct xenvif *)data;
-
-	vif->dealloc_delay_timed_out = true;
-	wake_up(&vif->dealloc_wq);
-}
-
 static inline bool tx_dealloc_work_todo(struct xenvif *vif)
 {
-	if (vif->dealloc_cons != vif->dealloc_prod) {
-		if ((nr_free_slots(&vif->tx) > 2 * XEN_NETBK_LEGACY_SLOTS_MAX) &&
-		    (vif->dealloc_prod - vif->dealloc_cons < MAX_PENDING_REQS / 4) &&
-		    !vif->dealloc_delay_timed_out) {
-			if (!timer_pending(&vif->dealloc_delay)) {
-				vif->dealloc_delay.function =
-					xenvif_dealloc_delay;
-				vif->dealloc_delay.data = (unsigned long)vif;
-				mod_timer(&vif->dealloc_delay,
-					  jiffies + msecs_to_jiffies(1));
-
-			}
-			return false;
-		}
-		del_timer_sync(&vif->dealloc_delay);
-		vif->dealloc_delay_timed_out = false;
-		return true;
-	}
-
-	return false;
+	return vif->dealloc_cons != vif->dealloc_prod;
 }
 
 void xenvif_unmap_frontend_rings(struct xenvif *vif)
-- 
1.7.9.5

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

* Re: [PATCH net-next] Revert "xen-netback: Aggregate TX unmap operations"
  2014-03-21 17:23 [PATCH net-next] Revert "xen-netback: Aggregate TX unmap operations" Zoltan Kiss
@ 2014-03-24  9:26 ` Ian Campbell
  2014-03-25 22:58   ` David Miller
  2014-03-26 10:57   ` Zoltan Kiss
  0 siblings, 2 replies; 4+ messages in thread
From: Ian Campbell @ 2014-03-24  9:26 UTC (permalink / raw)
  To: Zoltan Kiss
  Cc: wei.liu2, xen-devel, paul.durrant, netdev, linux-kernel,
	jonathan.davies

On Fri, 2014-03-21 at 17:23 +0000, Zoltan Kiss wrote:
> This reverts commit e9275f5e2df1b2098a8cc405d87b88b9affd73e6. This commit is the
> last in the netback grant mapping series, and it tries to do more aggressive
> aggreagtion of unmap operations. However practical use showed almost no
> positive effect, whilst with certain frontends it causes significant performance
> regression.

That's a shame -- do you have any insight into why?

> Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>

Acked-by: Ian Campbell <ian.campbell@citrix.com>

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

* Re: [PATCH net-next] Revert "xen-netback: Aggregate TX unmap operations"
  2014-03-24  9:26 ` Ian Campbell
@ 2014-03-25 22:58   ` David Miller
  2014-03-26 10:57   ` Zoltan Kiss
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2014-03-25 22:58 UTC (permalink / raw)
  To: Ian.Campbell
  Cc: zoltan.kiss, wei.liu2, xen-devel, paul.durrant, netdev,
	linux-kernel, jonathan.davies

From: Ian Campbell <Ian.Campbell@citrix.com>
Date: Mon, 24 Mar 2014 09:26:47 +0000

> On Fri, 2014-03-21 at 17:23 +0000, Zoltan Kiss wrote:
>> This reverts commit e9275f5e2df1b2098a8cc405d87b88b9affd73e6. This commit is the
>> last in the netback grant mapping series, and it tries to do more aggressive
>> aggreagtion of unmap operations. However practical use showed almost no
>> positive effect, whilst with certain frontends it causes significant performance
>> regression.
> 
> That's a shame -- do you have any insight into why?
> 
>> Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>
> 
> Acked-by: Ian Campbell <ian.campbell@citrix.com>

Applied, thanks.

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

* Re: [PATCH net-next] Revert "xen-netback: Aggregate TX unmap operations"
  2014-03-24  9:26 ` Ian Campbell
  2014-03-25 22:58   ` David Miller
@ 2014-03-26 10:57   ` Zoltan Kiss
  1 sibling, 0 replies; 4+ messages in thread
From: Zoltan Kiss @ 2014-03-26 10:57 UTC (permalink / raw)
  To: Ian Campbell
  Cc: wei.liu2, xen-devel, paul.durrant, netdev, linux-kernel,
	jonathan.davies

On 24/03/14 09:26, Ian Campbell wrote:
> On Fri, 2014-03-21 at 17:23 +0000, Zoltan Kiss wrote:
>> This reverts commit e9275f5e2df1b2098a8cc405d87b88b9affd73e6. This commit is the
>> last in the netback grant mapping series, and it tries to do more aggressive
>> aggreagtion of unmap operations. However practical use showed almost no
>> positive effect, whilst with certain frontends it causes significant performance
>> regression.
>
> That's a shame -- do you have any insight into why?

It cause performance regression when the guest limits itself to a small 
amount of outstanding packets. E.g. with iperf on Win7 there are always 
2 in flight.
Currently batching happens in this way:
- the callback can put up to MAX_SKB_FRAGS slots into the dealloc ring 
before it wakes up the dealloc thread
- the thread doesn't schedule immediately, of course, so other callbacks 
can add to the dealloc ring in the meantime
- and even when the dealloc thread consumes the dealloc ring, the 
callbacks can put slots onto it

And my upcoming patch will avoid TLB flush in a lot of cases. If someone 
has more time to research a better strategy, that would be good, but I 
think currently it is a low priority thing.

Zoli

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

end of thread, other threads:[~2014-03-26 10:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-21 17:23 [PATCH net-next] Revert "xen-netback: Aggregate TX unmap operations" Zoltan Kiss
2014-03-24  9:26 ` Ian Campbell
2014-03-25 22:58   ` David Miller
2014-03-26 10:57   ` Zoltan Kiss

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).