Lines Matching refs:buff
989 buffer_t *buff; in init_hdlc_queues() local
992 if (!(buff = netdev_alloc_skb(port->netdev, RX_SIZE))) in init_hdlc_queues()
994 data = buff->data; in init_hdlc_queues()
996 if (!(buff = kmalloc(RX_SIZE, GFP_KERNEL))) in init_hdlc_queues()
998 data = buff; in init_hdlc_queues()
1004 free_buffer(buff); in init_hdlc_queues()
1007 port->rx_buff_tab[i] = buff; in init_hdlc_queues()
1020 buffer_t *buff = port->rx_buff_tab[i]; in destroy_hdlc_queues() local
1021 if (buff) { in destroy_hdlc_queues()
1025 free_buffer(buff); in destroy_hdlc_queues()
1030 buffer_t *buff = port->tx_buff_tab[i]; in destroy_hdlc_queues() local
1031 if (buff) { in destroy_hdlc_queues()
1033 free_buffer(buff); in destroy_hdlc_queues()