Symbol: ATM_CELL_PAYLOAD
drivers/atm/eni.c
1073
size = (ATM_CELL_PAYLOAD >> 2)+TX_DESCR_SIZE;
drivers/atm/eni.c
1077
size = skb->len+4*AAL5_TRAILER+ATM_CELL_PAYLOAD-1;
drivers/atm/eni.c
1079
size = ((size-(size % ATM_CELL_PAYLOAD)) >> 2)+TX_DESCR_SIZE;
drivers/atm/eni.c
1154
(size/(ATM_CELL_PAYLOAD/4)),tx->send+tx->tx_pos*4);
drivers/atm/eni.c
574
size = (descr & MID_RED_COUNT)*(ATM_CELL_PAYLOAD >> 2);
drivers/atm/eni.c
582
size = (descr & MID_RED_COUNT)*(ATM_CELL_PAYLOAD >> 2);
drivers/atm/fore200e.c
1527
if ((vcc->qos.aal == ATM_AAL0) && (skb_len % ATM_CELL_PAYLOAD)) {
drivers/atm/fore200e.c
1532
tx_len = ((skb_len / ATM_CELL_PAYLOAD) + 1) * ATM_CELL_PAYLOAD;
drivers/atm/he.c
1236
he_writel(he_dev, he_dev->cells_per_lbuf * ATM_CELL_PAYLOAD, LB_CONFIG);
drivers/atm/he.c
2545
skb_pull(skb, ATM_AAL0_SDU - ATM_CELL_PAYLOAD);
drivers/atm/he.c
448
unsigned lbuf_bufsize = he_dev->cells_per_lbuf * ATM_CELL_PAYLOAD;
drivers/atm/he.c
478
unsigned lbuf_bufsize = he_dev->cells_per_lbuf * ATM_CELL_PAYLOAD;
drivers/atm/he.c
508
unsigned lbuf_bufsize = he_dev->cells_per_lbuf * ATM_CELL_PAYLOAD;
drivers/atm/idt77252.c
1096
skb_put_data(sb, cell, ATM_CELL_PAYLOAD);
drivers/atm/idt77252.c
1103
cell += ATM_CELL_PAYLOAD;
drivers/atm/idt77252.c
1115
skb->len = (stat & SAR_RSQE_CELLCNT) * ATM_CELL_PAYLOAD;
drivers/atm/idt77252.c
1327
skb_put_data(sb, &(queue->data[16]), ATM_CELL_PAYLOAD);
drivers/atm/idt77252.c
864
tbd->word_1 = SAR_TBD_OAM | ATM_CELL_PAYLOAD | SAR_TBD_EPDU;
drivers/atm/idt77252.c
890
ATM_CELL_PAYLOAD;
drivers/atm/idt77252.c
893
ATM_CELL_PAYLOAD;
drivers/atm/nicstar.c
1681
buflen = ATM_CELL_PAYLOAD; /* i.e., 48 bytes */
drivers/atm/nicstar.c
2057
memcpy(skb_tail_pointer(sb), cell, ATM_CELL_PAYLOAD);
drivers/atm/nicstar.c
2058
skb_put(sb, ATM_CELL_PAYLOAD);
drivers/atm/nicstar.c
2063
cell += ATM_CELL_PAYLOAD;
drivers/atm/nicstar.h
114
#define NS_AAL0_HEADER (ATM_AAL0_SDU - ATM_CELL_PAYLOAD) /* 4 bytes */
drivers/usb/atm/usbatm.c
179
length += ATM_CELL_PAYLOAD - 1 + ATM_AAL5_TRAILER;
drivers/usb/atm/usbatm.c
180
return length - length % ATM_CELL_PAYLOAD;
drivers/usb/atm/usbatm.c
325
if (sarb->tail + ATM_CELL_PAYLOAD > sarb->end) {
drivers/usb/atm/usbatm.c
332
memcpy(skb_tail_pointer(sarb), source + ATM_CELL_HEADER, ATM_CELL_PAYLOAD);
drivers/usb/atm/usbatm.c
333
__skb_put(sarb, ATM_CELL_PAYLOAD);
drivers/usb/atm/usbatm.c
465
unsigned int data_len = min_t(unsigned int, skb->len, ATM_CELL_PAYLOAD);
drivers/usb/atm/usbatm.c
466
unsigned int left = ATM_CELL_PAYLOAD - data_len;
drivers/usb/atm/usbatm.c
94
#define ATM_CELL_HEADER (ATM_CELL_SIZE - ATM_CELL_PAYLOAD)