Lines Matching defs:table
223 seq_puts(m, "Device table not found");
259 static void dump_128_irte(struct seq_file *m, struct irq_remap_table *table, u16 int_tab_len)
265 ptr = (struct irte_ga *)table->table;
277 static void dump_32_irte(struct seq_file *m, struct irq_remap_table *table, u16 int_tab_len)
283 ptr = (union irte *)table->table;
295 struct irq_remap_table *table;
300 table = pci_seg->irq_lookup_table[devid];
301 if (!table) {
302 seq_printf(m, "IRQ lookup table not set for %04x:%02x:%02x:%x\n",
313 seq_puts(m, "Device table not found");
326 raw_spin_lock_irqsave(&table->lock, flags);
328 dump_128_irte(m, table, BIT(int_tab_len >> 1));
330 dump_32_irte(m, table, BIT(int_tab_len >> 1));
332 raw_spin_unlock_irqrestore(&table->lock, flags);