Searched refs:pcibr_intr_list (Results 1 – 1 of 1) sorted by relevance
76 static struct pcibr_intr_list_t **pcibr_intr_list; variable153 struct pcibr_intr_list_t *p = pcibr_intr_list[irq]; in sn_set_affinity_irq()243 if (pcibr_intr_list == NULL) { in register_pcibr_intr()244 pcibr_intr_list = kmalloc(sizeof(struct pcibr_intr_list_t *) * NR_IRQS, GFP_KERNEL); in register_pcibr_intr()245 if (pcibr_intr_list == NULL) in register_pcibr_intr()246 pcibr_intr_list = vmalloc(sizeof(struct pcibr_intr_list_t *) * NR_IRQS); in register_pcibr_intr()247 if (pcibr_intr_list == NULL) panic("Could not allocate memory for pcibr_intr_list\n"); in register_pcibr_intr()248 memset( (void *)pcibr_intr_list, 0, sizeof(struct pcibr_intr_list_t *) * NR_IRQS); in register_pcibr_intr()255 if ((list = pcibr_intr_list[irq])) { in register_pcibr_intr()261 pcibr_intr_list[irq] = p; in register_pcibr_intr()[all …]