Lines Matching defs:netfront_queue
97 struct netfront_queue { struct
98 unsigned int id; /* Queue ID, 0-based */
99 char name[QUEUE_NAME_SIZE]; /* DEVNAME-qN */
100 struct netfront_info *info;
102 struct napi_struct napi;
107 unsigned int tx_evtchn, rx_evtchn;
108 unsigned int tx_irq, rx_irq;
110 char tx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-tx */
111 char rx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-rx */
113 spinlock_t tx_lock;
114 struct xen_netif_tx_front_ring tx;
115 int tx_ring_ref;
126 union skb_entry {
129 } tx_skbs[NET_TX_RING_SIZE];
153 struct netfront_queue *queues; argument