Lines Matching defs:ib
43 struct divert_info *ib;
52 if (!(ib = kmalloc(sizeof(struct divert_info) + strlen(cp), GFP_ATOMIC)))
54 strcpy(ib->info_start, cp); /* set output string */
55 ib->next = NULL;
57 ib->usage_cnt = if_used;
59 divert_info_head = ib; /* new head */
61 divert_info_tail->next = ib; /* follows existing messages */
62 divert_info_tail = ib; /* new tail */
68 ib = divert_info_head;
70 kfree(ib);