On 10-01-2007 11:01, Patrick McHardy wrote:
> [IPROUTE]: Introduce tc_calc_xmitsize and use where appropriate
> 
> Add tc_calc_xmitsize() as complement to tc_calc_xmittime(), which calculates
> the size that can be transmitted at a given rate during a given time.
> 
> Replace all expressions of the form "size = 
> rate*tc_core_tick2usec(time))/1000000"
> by tc_calc_xmitsize() calls.
> 
> Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
> 
> ---
...
> +unsigned tc_calc_xmitsize(unsigned rate, unsigned ticks)
> +{
> +     return ((double)rate*tc_core_tick2usec(ticks))/1000000;
> +}
> +

Actually, besides of replacing the expression, this function
changes its type to unsigned also.

Regards,
Jarek P. 
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to