diff options
| -rw-r--r-- | net/sched/sch_fq.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/sched/sch_fq.c b/net/sched/sch_fq.c index cbd7e1fd23b4..9b05924cc386 100644 --- a/net/sched/sch_fq.c +++ b/net/sched/sch_fq.c | |||
| @@ -481,12 +481,11 @@ begin: | |||
| 481 | if (likely(rate)) | 481 | if (likely(rate)) |
| 482 | do_div(len, rate); | 482 | do_div(len, rate); |
| 483 | /* Since socket rate can change later, | 483 | /* Since socket rate can change later, |
| 484 | * clamp the delay to 125 ms. | 484 | * clamp the delay to 1 second. |
| 485 | * TODO: maybe segment the too big skb, as in commit | 485 | * Really, providers of too big packets should be fixed ! |
| 486 | * e43ac79a4bc ("sch_tbf: segment too big GSO packets") | ||
| 487 | */ | 486 | */ |
| 488 | if (unlikely(len > 125 * NSEC_PER_MSEC)) { | 487 | if (unlikely(len > NSEC_PER_SEC)) { |
| 489 | len = 125 * NSEC_PER_MSEC; | 488 | len = NSEC_PER_SEC; |
| 490 | q->stat_pkts_too_long++; | 489 | q->stat_pkts_too_long++; |
| 491 | } | 490 | } |
| 492 | 491 | ||
