Lines Matching defs:netfront_queue
100 struct netfront_queue { struct
101 unsigned int id; /* Queue ID, 0-based */
102 char name[QUEUE_NAME_SIZE]; /* DEVNAME-qN */
103 struct netfront_info *info;
105 struct napi_struct napi;
110 unsigned int tx_evtchn, rx_evtchn;
111 unsigned int tx_irq, rx_irq;
113 char tx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-tx */
114 char rx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-rx */
116 spinlock_t tx_lock;
117 struct xen_netif_tx_front_ring tx;
118 int tx_ring_ref;
129 union skb_entry {
132 } tx_skbs[NET_TX_RING_SIZE];
156 struct netfront_queue *queues; argument