Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/net/
Dxen-netfront.c117 unsigned int tx_evtchn, rx_evtchn; member
1638 queue->tx_evtchn = queue->rx_evtchn = 0; in xennet_disconnect_backend()
1704 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_single()
1708 err = bind_evtchn_to_irqhandler(queue->tx_evtchn, in setup_netfront_single()
1713 queue->rx_evtchn = queue->tx_evtchn; in setup_netfront_single()
1719 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_single()
1720 queue->tx_evtchn = 0; in setup_netfront_single()
1729 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_split()
1738 err = bind_evtchn_to_irqhandler(queue->tx_evtchn, in setup_netfront_split()
1763 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_split()
[all …]
/Linux-v5.10/drivers/net/xen-netback/
Dxenbus.c852 unsigned int tx_evtchn, rx_evtchn; in connect_data_rings() local
896 "event-channel-tx", "%u", &tx_evtchn, in connect_data_rings()
900 "event-channel", "%u", &tx_evtchn); in connect_data_rings()
907 rx_evtchn = tx_evtchn; in connect_data_rings()
912 tx_evtchn, rx_evtchn); in connect_data_rings()
917 tx_evtchn, rx_evtchn); in connect_data_rings()
Dinterface.c717 unsigned int tx_evtchn, in xenvif_connect_data() argument
753 if (tx_evtchn == rx_evtchn) { in xenvif_connect_data()
756 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0, in xenvif_connect_data()
767 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0, in xenvif_connect_data()
Dcommon.h358 unsigned int tx_evtchn,