• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/atm/

Lines Matching refs:fore200e_vcc

1019     struct fore200e_vcc* fore200e_vcc;
1027 fore200e_vcc = FORE200E_VCC(vcc);
1028 ASSERT(fore200e_vcc);
1079 if (pdu_len < fore200e_vcc->rx_min_pdu)
1080 fore200e_vcc->rx_min_pdu = pdu_len;
1081 if (pdu_len > fore200e_vcc->rx_max_pdu)
1082 fore200e_vcc->rx_max_pdu = pdu_len;
1083 fore200e_vcc->rx_pdu++;
1364 struct fore200e_vcc* fore200e_vcc;
1390 fore200e_vcc = kzalloc(sizeof(struct fore200e_vcc), GFP_ATOMIC);
1391 if (fore200e_vcc == NULL) {
1411 kfree(fore200e_vcc);
1426 vcc->dev_data = fore200e_vcc;
1439 kfree(fore200e_vcc);
1446 fore200e_rate_ctrl(&vcc->qos, &fore200e_vcc->rate);
1452 fore200e_vcc->rate.data_cells, fore200e_vcc->rate.idle_cells);
1455 fore200e_vcc->tx_min_pdu = fore200e_vcc->rx_min_pdu = MAX_PDU_SIZE + 1;
1456 fore200e_vcc->tx_max_pdu = fore200e_vcc->rx_max_pdu = 0;
1457 fore200e_vcc->tx_pdu = fore200e_vcc->rx_pdu = 0;
1473 struct fore200e_vcc* fore200e_vcc;
1496 fore200e_vcc = FORE200E_VCC(vcc);
1514 ASSERT(fore200e_vcc);
1515 kfree(fore200e_vcc);
1523 struct fore200e_vcc* fore200e_vcc = FORE200E_VCC(vcc);
1541 ASSERT(fore200e_vcc);
1662 if (skb_len < fore200e_vcc->tx_min_pdu)
1663 fore200e_vcc->tx_min_pdu = skb_len;
1664 if (skb_len > fore200e_vcc->tx_max_pdu)
1665 fore200e_vcc->tx_max_pdu = skb_len;
1666 fore200e_vcc->tx_pdu++;
1669 tpd->rate.data_cells = fore200e_vcc->rate.data_cells;
1670 tpd->rate.idle_cells = fore200e_vcc->rate.idle_cells;
1909 struct fore200e_vcc* fore200e_vcc = FORE200E_VCC(vcc);
1944 fore200e_rate_ctrl(qos, &fore200e_vcc->rate);
2747 struct fore200e_vcc* fore200e_vcc;
3007 fore200e_vcc = FORE200E_VCC(vcc);
3008 ASSERT(fore200e_vcc);
3014 fore200e_vcc->tx_pdu,
3015 fore200e_vcc->tx_min_pdu > 0xFFFF ? 0 : fore200e_vcc->tx_min_pdu,
3016 fore200e_vcc->tx_max_pdu,
3017 fore200e_vcc->rx_pdu,
3018 fore200e_vcc->rx_min_pdu > 0xFFFF ? 0 : fore200e_vcc->rx_min_pdu,
3019 fore200e_vcc->rx_max_pdu);