Home
last modified time | relevance | path

Searched refs:cell_buf (Results 1 – 4 of 4) sorted by relevance

/drivers/atm/
Dhorizon.h297 typedef struct cell_buf { struct
306 } cell_buf; argument
347 cell_buf inittxbufs[TX_CHANS]; // these are really
348 cell_buf bufn1[BUFN1_SIZE]; // part of this pool
349 cell_buf txfreebufstart;
350 cell_buf txfreebufend;
351 cell_buf rxfreebufstart;
352 cell_buf rxfreebufend; // 8+118+1+1+1+1+124 = 254
353 cell_buf bufn2[BUFN2_SIZE]; // 16 * 254 = 4064 , 0x1000
355 cell_buf bufn3[BUFN3_SIZE]; // 16 * 192 = 3072 , 0x2000
[all …]
Dhorizon.c1820 cell_buf * tx_desc; in hrz_init()
1821 cell_buf * rx_desc; in hrz_init()
1857 cell_buf * buf = &memmap->inittxbufs[chan]; in hrz_init()
/drivers/usb/atm/
Dusbatm.c420 unsigned char *cell_buf = instance->cell_buf; in usbatm_extract_cells() local
425 memcpy(cell_buf + buf_usage, source, space_left); in usbatm_extract_cells()
428 usbatm_extract_one_cell(instance, cell_buf); in usbatm_extract_cells()
432 memcpy(cell_buf + buf_usage, source, avail_data); in usbatm_extract_cells()
444 memcpy(instance->cell_buf, source, avail_data); in usbatm_extract_cells()
1164 instance->cell_buf = kmalloc(instance->rx_channel.stride, GFP_KERNEL); in usbatm_usb_probe()
1166 if (!instance->cell_buf) { in usbatm_usb_probe()
1190 kfree(instance->cell_buf); in usbatm_usb_probe()
1261 kfree(instance->cell_buf); in usbatm_usb_disconnect()
Dusbatm.h164 unsigned char *cell_buf; /* holds partial rx cell */ member