Home
last modified time | relevance | path

Searched refs:tx_evtchn (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/drivers/net/
Dxen-netfront.c110 unsigned int tx_evtchn, rx_evtchn; member
1405 queue->tx_evtchn = queue->rx_evtchn = 0; in xennet_disconnect_backend()
1469 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_single()
1473 err = bind_evtchn_to_irqhandler(queue->tx_evtchn, in setup_netfront_single()
1478 queue->rx_evtchn = queue->tx_evtchn; in setup_netfront_single()
1484 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_single()
1485 queue->tx_evtchn = 0; in setup_netfront_single()
1494 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_split()
1503 err = bind_evtchn_to_irqhandler(queue->tx_evtchn, in setup_netfront_split()
1528 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_split()
[all …]
/Linux-v4.19/drivers/net/xen-netback/
Dxenbus.c1071 unsigned int tx_evtchn, rx_evtchn; in connect_data_rings() local
1115 "event-channel-tx", "%u", &tx_evtchn, in connect_data_rings()
1119 "event-channel", "%u", &tx_evtchn); in connect_data_rings()
1126 rx_evtchn = tx_evtchn; in connect_data_rings()
1131 tx_evtchn, rx_evtchn); in connect_data_rings()
1136 tx_evtchn, rx_evtchn); in connect_data_rings()
Dinterface.c624 unsigned int tx_evtchn, in xenvif_connect_data() argument
646 if (tx_evtchn == rx_evtchn) { in xenvif_connect_data()
649 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0, in xenvif_connect_data()
660 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0, in xenvif_connect_data()
Dcommon.h323 unsigned int tx_evtchn,