Lines Matching refs:tx_max
196 dev_dbg(&dev->intf->dev, "tx_max must be in the [%u, %u] range\n", min, max);
225 return sprintf(buf, "%u\n", ctx->tx_max);
264 cdc_ncm_update_rxtx_max(dev, val, ctx->tx_max);
308 static DEVICE_ATTR_RW(tx_max);
404 /* handle rx_max and tx_max changes */
437 if (val != ctx->tx_max)
438 dev_info(&dev->intf->dev, "setting tx_max = %u\n", val);
441 * in cdc_ncm_fill_tx_frame, making tx_max always represent
452 if (netif_running(dev->net) && val > ctx->tx_max) {
460 ctx->tx_max = val;
463 ctx->tx_max = val;
466 dev->hard_mtu = ctx->tx_max;
472 ctx->min_tx_pkt = clamp_t(u16, ctx->tx_max - 3 * usb_maxpacket(dev->udev, dev->out),
473 CDC_NCM_MIN_TX_PKT, ctx->tx_max);
579 ctx->tx_max = le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize);
588 ctx->rx_max, ctx->tx_max, ctx->tx_remainder, ctx->tx_modulus,
671 (val != ((-val) & val)) || (val >= ctx->tx_max)) {
685 (val != ((-val) & val)) || (val >= ctx->tx_max)) {
714 /* clamp rx_max and tx_max and inform device */
1242 ctx->tx_curr_size = ctx->tx_max;