Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/net/
Dxen-netfront.c110 unsigned int tx_evtchn, rx_evtchn; member
1403 queue->tx_evtchn = queue->rx_evtchn = 0; in xennet_disconnect_backend()
1467 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_single()
1471 err = bind_evtchn_to_irqhandler(queue->tx_evtchn, in setup_netfront_single()
1476 queue->rx_evtchn = queue->tx_evtchn; in setup_netfront_single()
1482 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_single()
1483 queue->tx_evtchn = 0; in setup_netfront_single()
1492 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_split()
1501 err = bind_evtchn_to_irqhandler(queue->tx_evtchn, in setup_netfront_split()
1526 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_split()
[all …]
/Linux-v5.4/drivers/net/xen-netback/
Dxenbus.c1007 unsigned int tx_evtchn, rx_evtchn; in connect_data_rings() local
1051 "event-channel-tx", "%u", &tx_evtchn, in connect_data_rings()
1055 "event-channel", "%u", &tx_evtchn); in connect_data_rings()
1062 rx_evtchn = tx_evtchn; in connect_data_rings()
1067 tx_evtchn, rx_evtchn); in connect_data_rings()
1072 tx_evtchn, rx_evtchn); in connect_data_rings()
Dinterface.c632 unsigned int tx_evtchn, in xenvif_connect_data() argument
654 if (tx_evtchn == rx_evtchn) { in xenvif_connect_data()
657 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0, in xenvif_connect_data()
668 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0, in xenvif_connect_data()
Dcommon.h341 unsigned int tx_evtchn,