Lines Matching full:throttling
132 * @throttling: Interrupt throttling rate in ns
152 unsigned int throttling; member
619 tb_ring_throttling(sdev->tx_ring.ring, sdev->throttling); in tbstream_dev_start()
620 tb_ring_throttling(sdev->rx_ring.ring, sdev->throttling); in tbstream_dev_start()
1334 return sysfs_emit(buf, "%u\n", sdev->throttling); in tbstream_dev_throttling_show()
1343 unsigned int throttling; in tbstream_dev_throttling_store() local
1346 ret = kstrtouint(buf, 0, &throttling); in tbstream_dev_throttling_store()
1350 if (throttling > TBSTREAM_DEV_MAX_THROTTLING) in tbstream_dev_throttling_store()
1356 sdev->throttling = throttling; in tbstream_dev_throttling_store()
1359 CONFIGFS_ATTR(tbstream_dev_, throttling);
1511 sdev->throttling = TBSTREAM_DEV_THROTTLING; in tbstream_dev_make_group()