Lines Matching refs:evtchn_to_irq
173 static int **evtchn_to_irq; variable
179 #define EVTCHN_ROW(e) (e / (PAGE_SIZE/sizeof(**evtchn_to_irq)))
180 #define EVTCHN_COL(e) (e % (PAGE_SIZE/sizeof(**evtchn_to_irq)))
181 #define EVTCHN_PER_ROW (PAGE_SIZE / sizeof(**evtchn_to_irq))
209 if (evtchn_to_irq[row] == NULL) in clear_evtchn_to_irq_all()
211 clear_evtchn_to_irq_row(evtchn_to_irq[row]); in clear_evtchn_to_irq_all()
227 if (evtchn_to_irq[row] == NULL) { in set_evtchn_to_irq()
242 if (cmpxchg(&evtchn_to_irq[row], NULL, evtchn_row) != NULL) in set_evtchn_to_irq()
246 WRITE_ONCE(evtchn_to_irq[row][col], irq); in set_evtchn_to_irq()
273 if (evtchn_to_irq[EVTCHN_ROW(evtchn)] == NULL) in evtchn_to_info()
275 irq = READ_ONCE(evtchn_to_irq[EVTCHN_ROW(evtchn)][EVTCHN_COL(evtchn)]); in evtchn_to_info()
2280 evtchn_to_irq = kcalloc(EVTCHN_ROW(xen_evtchn_max_channels()), in xen_init_IRQ()
2281 sizeof(*evtchn_to_irq), GFP_KERNEL); in xen_init_IRQ()
2282 BUG_ON(!evtchn_to_irq); in xen_init_IRQ()