Skip to content

Commit

Permalink
xen-netback: stop vif thread spinning if frontend is unresponsive
Browse files Browse the repository at this point in the history
The recent patch to improve guest receive side flow control (ca2f09f) had a
slight flaw in the wait condition for the vif thread in that any remaining
skbs in the guest receive side netback internal queue would prevent the
thread from sleeping. An unresponsive frontend can lead to a permanently
non-empty internal queue and thus the thread will spin. In this case the
thread should really sleep until the frontend becomes responsive again.

This patch adds an extra flag to the vif which is set if the shared ring
is full and cleared when skbs are drained into the shared ring. Thus,
if the thread runs, finds the shared ring full and can make no progress the
flag remains set. If the flag remains set then the thread will sleep,
regardless of a non-empty queue, until the next event from the frontend.

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Cc: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: David Vrabel <david.vrabel@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Paul Durrant authored and David S. Miller committed Jan 10, 2014
1 parent 451cd14 commit 11b57f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions drivers/net/xen-netback/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ struct xenvif {
char rx_irq_name[IFNAMSIZ+4]; /* DEVNAME-rx */
struct xen_netif_rx_back_ring rx;
struct sk_buff_head rx_queue;
bool rx_queue_stopped;
/* Set when the RX interrupt is triggered by the frontend.
* The worker thread may need to wake the queue.
*/
Expand Down
14 changes: 9 additions & 5 deletions drivers/net/xen-netback/netback.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,8 @@ static void xenvif_rx_action(struct xenvif *vif)
int ret;
unsigned long offset;
struct skb_cb_overlay *sco;
int need_to_notify = 0;
bool need_to_notify = false;
bool ring_full = false;

struct netrx_pending_operations npo = {
.copy = vif->grant_copy_op,
Expand Down Expand Up @@ -508,7 +509,8 @@ static void xenvif_rx_action(struct xenvif *vif)
/* If the skb may not fit then bail out now */
if (!xenvif_rx_ring_slots_available(vif, max_slots_needed)) {
skb_queue_head(&vif->rx_queue, skb);
need_to_notify = 1;
need_to_notify = true;
ring_full = true;
break;
}

Expand All @@ -521,6 +523,8 @@ static void xenvif_rx_action(struct xenvif *vif)

BUG_ON(npo.meta_prod > ARRAY_SIZE(vif->meta));

vif->rx_queue_stopped = !npo.copy_prod && ring_full;

if (!npo.copy_prod)
goto done;

Expand Down Expand Up @@ -592,8 +596,7 @@ static void xenvif_rx_action(struct xenvif *vif)

RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->rx, ret);

if (ret)
need_to_notify = 1;
need_to_notify |= !!ret;

npo.meta_cons += sco->meta_slots_used;
dev_kfree_skb(skb);
Expand Down Expand Up @@ -1724,7 +1727,8 @@ static struct xen_netif_rx_response *make_rx_response(struct xenvif *vif,

static inline int rx_work_todo(struct xenvif *vif)
{
return !skb_queue_empty(&vif->rx_queue) || vif->rx_event;
return (!skb_queue_empty(&vif->rx_queue) && !vif->rx_queue_stopped) ||
vif->rx_event;
}

static inline int tx_work_todo(struct xenvif *vif)
Expand Down

0 comments on commit 11b57f9

Please sign in to comment.