Lines Matching defs:new
39 * eth_configure when a new interface is added.
47 struct sk_buff *new;
57 new = dev_alloc_skb(max);
58 if (new == NULL)
61 skb_put(new, max);
64 drop_skb = new;
172 * is full when we get here. In this case, new data is never queued,
572 void register_transport(struct transport *new)
581 BUG_ON(!list_empty(&new->list));
582 list_add(&new->list, &transports);
587 match = check_transport(new, eth->init, eth->index, &init,
592 eth_configure(eth->index, init, mac, new, GFP_KERNEL);
627 struct eth_init *new;
638 new = memblock_alloc(sizeof(*new), SMP_CACHE_BYTES);
639 if (!new)
641 sizeof(*new));
643 INIT_LIST_HEAD(&new->list);
644 new->index = n;
645 new->init = str;
647 list_add_tail(&new->list, ð_cmd_line);