Hi all, Today's linux-next merge of the net-next tree got a conflict in drivers/net/xen-netback/netback.c between commit 59ae9fc67007 ("xen-netback: Fix handling of skbs requiring too many slots") from the net tree and commit e9ce7cb6b107 ("xen-netback: Factor queue-specific data into queue struct") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc drivers/net/xen-netback/netback.c index a160b4ef5ba0,49efff9b99f4..000000000000 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@@ -556,12 -548,18 +563,12 @@@ static void xenvif_add_frag_responses(s } } - void xenvif_kick_thread(struct xenvif *vif) -struct xenvif_rx_cb { - int meta_slots_used; -}; - -#define XENVIF_RX_CB(skb) ((struct xenvif_rx_cb *)(skb)->cb) - + void xenvif_kick_thread(struct xenvif_queue *queue) { - wake_up(&vif->wq); + wake_up(&queue->wq); } - static void xenvif_rx_action(struct xenvif *vif) + static void xenvif_rx_action(struct xenvif_queue *queue) { s8 status; u16 flags;