mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
pie: remove unnecessary type casting
In function pie_calculate_probability(), the variables alpha and beta are of type u64. The variables qdelay, qdelay_old and params->target are of type psched_time_t (which is also u64). The explicit type casting done when calculating the value for the variable delta is redundant and not required. Signed-off-by: Mohit P. Tahiliani <tahiliani@nitk.edu.in> Signed-off-by: Gautam Ramakrishnan <gautamramk@gmail.com> Signed-off-by: Leslie Monis <lesliemonis@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
90baeb9dd2
commit
220d4ac74e
@ -363,8 +363,8 @@ void pie_calculate_probability(struct pie_params *params, struct pie_vars *vars,
|
||||
}
|
||||
|
||||
/* alpha and beta should be between 0 and 32, in multiples of 1/16 */
|
||||
delta += alpha * (u64)(qdelay - params->target);
|
||||
delta += beta * (u64)(qdelay - qdelay_old);
|
||||
delta += alpha * (qdelay - params->target);
|
||||
delta += beta * (qdelay - qdelay_old);
|
||||
|
||||
oldprob = vars->prob;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user