|
@@ -481,12 +481,11 @@ begin:
|
|
if (likely(rate))
|
|
if (likely(rate))
|
|
do_div(len, rate);
|
|
do_div(len, rate);
|
|
/* Since socket rate can change later,
|
|
/* Since socket rate can change later,
|
|
- * clamp the delay to 125 ms.
|
|
|
|
- * TODO: maybe segment the too big skb, as in commit
|
|
|
|
- * e43ac79a4bc ("sch_tbf: segment too big GSO packets")
|
|
|
|
|
|
+ * clamp the delay to 1 second.
|
|
|
|
+ * Really, providers of too big packets should be fixed !
|
|
*/
|
|
*/
|
|
- if (unlikely(len > 125 * NSEC_PER_MSEC)) {
|
|
|
|
- len = 125 * NSEC_PER_MSEC;
|
|
|
|
|
|
+ if (unlikely(len > NSEC_PER_SEC)) {
|
|
|
|
+ len = NSEC_PER_SEC;
|
|
q->stat_pkts_too_long++;
|
|
q->stat_pkts_too_long++;
|
|
}
|
|
}
|
|
|
|
|