Home
last modified time | relevance | path

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

/linux/drivers/net/
H A Dxen-netfront.c119 unsigned int tx_evtchn, rx_evtchn; member
1833 queue->tx_evtchn = queue->rx_evtchn = 0; in xennet_disconnect_backend()
1909 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_single()
1913 err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, in setup_netfront_single()
1919 queue->rx_evtchn = queue->tx_evtchn; in setup_netfront_single()
1925 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_single()
1926 queue->tx_evtchn = 0; in setup_netfront_single()
1935 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_split()
1944 err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, in setup_netfront_split()
1969 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_split()
[all …]
/linux/drivers/net/xen-netback/
H A Dxenbus.c856 unsigned int tx_evtchn, rx_evtchn; in connect_data_rings() local
899 "event-channel-tx", "%u", &tx_evtchn, in connect_data_rings()
903 "event-channel", "%u", &tx_evtchn); in connect_data_rings()
910 rx_evtchn = tx_evtchn; in connect_data_rings()
915 tx_evtchn, rx_evtchn); in connect_data_rings()
920 tx_evtchn, rx_evtchn); in connect_data_rings()
H A Dinterface.c706 unsigned int tx_evtchn, in xenvif_connect_data() argument
747 if (tx_evtchn == rx_evtchn) { in xenvif_connect_data()
750 dev, tx_evtchn, xenvif_interrupt, 0, in xenvif_connect_data()
761 dev, tx_evtchn, xenvif_tx_interrupt, 0, in xenvif_connect_data()
H A Dcommon.h356 unsigned int tx_evtchn,