fore200e_vcc
if (pdu_len < fore200e_vcc->rx_min_pdu)
fore200e_vcc->rx_min_pdu = pdu_len;
if (pdu_len > fore200e_vcc->rx_max_pdu)
fore200e_vcc->rx_max_pdu = pdu_len;
fore200e_vcc->rx_pdu++;
struct fore200e_vcc* fore200e_vcc;
fore200e_vcc = kzalloc_obj(struct fore200e_vcc, GFP_ATOMIC);
if (fore200e_vcc == NULL) {
kfree(fore200e_vcc);
vcc->dev_data = fore200e_vcc;
kfree(fore200e_vcc);
fore200e_rate_ctrl(&vcc->qos, &fore200e_vcc->rate);
fore200e_vcc->rate.data_cells, fore200e_vcc->rate.idle_cells);
fore200e_vcc->tx_min_pdu = fore200e_vcc->rx_min_pdu = MAX_PDU_SIZE + 1;
fore200e_vcc->tx_max_pdu = fore200e_vcc->rx_max_pdu = 0;
fore200e_vcc->tx_pdu = fore200e_vcc->rx_pdu = 0;
struct fore200e_vcc* fore200e_vcc;
fore200e_vcc = FORE200E_VCC(vcc);
ASSERT(fore200e_vcc);
kfree(fore200e_vcc);
struct fore200e_vcc* fore200e_vcc;
fore200e_vcc = FORE200E_VCC(vcc);
if (!fore200e_vcc)
if (skb_len < fore200e_vcc->tx_min_pdu)
fore200e_vcc->tx_min_pdu = skb_len;
if (skb_len > fore200e_vcc->tx_max_pdu)
fore200e_vcc->tx_max_pdu = skb_len;
fore200e_vcc->tx_pdu++;
tpd->rate.data_cells = fore200e_vcc->rate.data_cells;
tpd->rate.idle_cells = fore200e_vcc->rate.idle_cells;
struct fore200e_vcc* fore200e_vcc = FORE200E_VCC(vcc);
fore200e_rate_ctrl(qos, &fore200e_vcc->rate);
struct fore200e_vcc* fore200e_vcc;
fore200e_vcc = FORE200E_VCC(vcc);
ASSERT(fore200e_vcc);
fore200e_vcc->tx_pdu,
fore200e_vcc->tx_min_pdu > 0xFFFF ? 0 : fore200e_vcc->tx_min_pdu,
fore200e_vcc->tx_max_pdu,
fore200e_vcc->rx_pdu,
fore200e_vcc->rx_min_pdu > 0xFFFF ? 0 : fore200e_vcc->rx_min_pdu,
fore200e_vcc->rx_max_pdu);
struct fore200e_vcc* fore200e_vcc;
fore200e_vcc = FORE200E_VCC(vcc);
ASSERT(fore200e_vcc);
#define FORE200E_VCC(d) ((struct fore200e_vcc*)((d)->dev_data))