Lines Matching refs:tab
533 struct unwind_table *tab = kmalloc(sizeof(*tab), GFP_KERNEL);
538 if (!tab)
539 return tab;
541 tab->start = (const struct unwind_idx *)start;
542 tab->stop = (const struct unwind_idx *)(start + size);
543 tab->origin = unwind_find_origin(tab->start, tab->stop);
544 tab->begin_addr = text_addr;
545 tab->end_addr = text_addr + text_size;
548 list_add_tail(&tab->list, &unwind_tables);
551 return tab;
554 void unwind_table_del(struct unwind_table *tab)
558 if (!tab)
562 list_del(&tab->list);
565 kfree(tab);