Skip to content

Commit

Permalink
net: sched: pie: change default value of pie_params->target
Browse files Browse the repository at this point in the history
RFC 8033 suggests a default value of 15 milliseconds for the
target queue delay.

Signed-off-by: Mohit P. Tahiliani <[email protected]>
Signed-off-by: Dhaval Khandla <[email protected]>
Signed-off-by: Hrishikesh Hiraskar <[email protected]>
Signed-off-by: Manish Kumar B <[email protected]>
Signed-off-by: Sachin D. Patil <[email protected]>
Signed-off-by: Leslie Monis <[email protected]>
Acked-by: Dave Taht <[email protected]>
Acked-by: Jamal Hadi Salim <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
mohittahiliani authored and davem330 committed Feb 25, 2019
1 parent 5750900 commit abde792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sched/sch_pie.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static void pie_params_init(struct pie_params *params)
params->beta = 20;
params->tupdate = usecs_to_jiffies(30 * USEC_PER_MSEC); /* 30 ms */
params->limit = 1000; /* default of 1000 packets */
params->target = PSCHED_NS2TICKS(20 * NSEC_PER_MSEC); /* 20 ms */
params->target = PSCHED_NS2TICKS(15 * NSEC_PER_MSEC); /* 15 ms */
params->ecn = false;
params->bytemode = false;
}
Expand Down

0 comments on commit abde792

Please sign in to comment.