Lines Matching defs:rate
172 /* parse committed rate - in bits / sec */
177 " committed rate missing\n"));
182 /* parse peak rate - in bits / sec */
187 " peak rate missing\n"));
195 " peak rate < committed rate\n"));
290 uint32_t rate;
370 /* parse committed rate, if present */
371 if ((err = nvlist_lookup_uint32(nvlp, TSWTCL_COMMITTED_RATE, &rate))
373 cfg_parms->committed_rate = rate;
376 /* parse peak rate, if present */
377 if ((err = nvlist_lookup_uint32(nvlp, TSWTCL_PEAK_RATE, &rate))
379 cfg_parms->peak_rate = rate;
385 " peak rate < committed rate\n"));