Hirokazu Takahashi wrote: > I think the concept of TBF is quit good but the userspace tools have > become old that it doesn't fit to Gb ethernet environment. > The tools should be updated to care about much faster network and > GbE jumbo frames. I agree with you at this point. > > On the other hand, handling TSO packet should be a kernel issue. > A TSO packet is logically just a multiple segmented packet > including several ordinary packets. This feature should be kept > invisible from userspace. Putting aside this question, this cannot work properly without userspace since the rate table is only built for the given MTU. Your patch tries to work around that by summing up the result of L2T in q->max_size steps, which gives incorrect results with MPU or overhead settings. I think we can only do two things without userspace support: - disable TSO (not a good idea) - split the skb into q->max_size chunks on dequeue The later would allow people to take full advantage of TSO with properly configured TBF, but it would still at least work with a too small mtu value. - To unsubscribe from this list: send the line "unsubscribe linux-net" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html