Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/atm/
Dhorizon.h312 typedef struct cell_buf { struct
321 } cell_buf; argument
362 cell_buf inittxbufs[TX_CHANS]; // these are really
363 cell_buf bufn1[BUFN1_SIZE]; // part of this pool
364 cell_buf txfreebufstart;
365 cell_buf txfreebufend;
366 cell_buf rxfreebufstart;
367 cell_buf rxfreebufend; // 8+118+1+1+1+1+124 = 254
368 cell_buf bufn2[BUFN2_SIZE]; // 16 * 254 = 4064 , 0x1000
370 cell_buf bufn3[BUFN3_SIZE]; // 16 * 192 = 3072 , 0x2000
[all …]
Dhorizon.c1835 cell_buf * tx_desc; in hrz_init()
1836 cell_buf * rx_desc; in hrz_init()
1872 cell_buf * buf = &memmap->inittxbufs[chan]; in hrz_init()
/Linux-v4.19/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()
1162 instance->cell_buf = kmalloc(instance->rx_channel.stride, GFP_KERNEL); in usbatm_usb_probe()
1164 if (!instance->cell_buf) { in usbatm_usb_probe()
1188 kfree(instance->cell_buf); in usbatm_usb_probe()
1259 kfree(instance->cell_buf); in usbatm_usb_disconnect()
Dusbatm.h164 unsigned char *cell_buf; /* holds partial rx cell */ member