Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/net/
H A Dxen-netfront.c121 unsigned int tx_evtchn, rx_evtchn; member
1830 queue->tx_evtchn = queue->rx_evtchn = 0; in xennet_disconnect_backend()
1906 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_single()
1910 err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, in setup_netfront_single()
1916 queue->rx_evtchn = queue->tx_evtchn; in setup_netfront_single()
1922 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_single()
1923 queue->tx_evtchn = 0; in setup_netfront_single()
1932 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_split()
1941 err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, in setup_netfront_split()
1966 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_split()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/xen-netback/
H A Dxenbus.c855 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.c708 unsigned int tx_evtchn, in xenvif_connect_data() argument
749 if (tx_evtchn == rx_evtchn) { in xenvif_connect_data()
752 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0, in xenvif_connect_data()
763 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0, in xenvif_connect_data()
H A Dcommon.h356 unsigned int tx_evtchn,