Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/net/
Dxen-netfront.c119 unsigned int tx_evtchn, rx_evtchn; member
1827 queue->tx_evtchn = queue->rx_evtchn = 0; in xennet_disconnect_backend()
1903 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_single()
1907 err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, in setup_netfront_single()
1913 queue->rx_evtchn = queue->tx_evtchn; in setup_netfront_single()
1919 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_single()
1920 queue->tx_evtchn = 0; in setup_netfront_single()
1929 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn); in setup_netfront_split()
1938 err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, in setup_netfront_split()
1963 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn); in setup_netfront_split()
[all …]
/linux-6.12.1/drivers/net/xen-netback/
Dxenbus.c855 unsigned int tx_evtchn, rx_evtchn; in connect_data_rings() local
898 "event-channel-tx", "%u", &tx_evtchn, in connect_data_rings()
902 "event-channel", "%u", &tx_evtchn); in connect_data_rings()
909 rx_evtchn = tx_evtchn; in connect_data_rings()
914 tx_evtchn, rx_evtchn); in connect_data_rings()
919 tx_evtchn, rx_evtchn); in connect_data_rings()
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()
Dcommon.h356 unsigned int tx_evtchn,