mbox series

[v2,iproute2-next,0/3] support delivering packets in

Message ID 20180827024230.246445-1-ysseung@google.com
Headers show
Series support delivering packets in | expand

Message

Yousuk Seung Aug. 27, 2018, 2:42 a.m. UTC
This series adds support for the new "slot" netem parameter for
slotting. Slotting is an approximation of shared media that gather up
packets within a varying delay window before delivering them nearly at
once.

Dave Taht (2):
  tc: support conversions to or from 64 bit nanosecond-based time
  q_netem: support delivering packets in delayed time slots

Yousuk Seung (1):
  q_netem: slotting with non-uniform distribution

 include/utils.h     |  12 +++++
 lib/utils.c         | 104 +++++++++++++++++++++++++++++++++++++++
 man/man8/tc-netem.8 |  40 ++++++++++++++-
 tc/q_netem.c        | 115 +++++++++++++++++++++++++++++++++++++++++++-
 tc/tc_cbq.c         |   1 +
 tc/tc_core.c        |   1 +
 tc/tc_core.h        |   2 -
 tc/tc_estimator.c   |   1 +
 tc/tc_util.c        |  46 ------------------
 tc/tc_util.h        |   3 --
 10 files changed, 272 insertions(+), 53 deletions(-)

Comments

David Ahern Aug. 30, 2018, 6:10 p.m. UTC | #1
On 8/26/18 8:42 PM, Yousuk Seung wrote:
> This series adds support for the new "slot" netem parameter for
> slotting. Slotting is an approximation of shared media that gather up
> packets within a varying delay window before delivering them nearly at
> once.
> 
> Dave Taht (2):
>   tc: support conversions to or from 64 bit nanosecond-based time
>   q_netem: support delivering packets in delayed time slots
> 
> Yousuk Seung (1):
>   q_netem: slotting with non-uniform distribution
> 
>  include/utils.h     |  12 +++++
>  lib/utils.c         | 104 +++++++++++++++++++++++++++++++++++++++
>  man/man8/tc-netem.8 |  40 ++++++++++++++-
>  tc/q_netem.c        | 115 +++++++++++++++++++++++++++++++++++++++++++-
>  tc/tc_cbq.c         |   1 +
>  tc/tc_core.c        |   1 +
>  tc/tc_core.h        |   2 -
>  tc/tc_estimator.c   |   1 +
>  tc/tc_util.c        |  46 ------------------
>  tc/tc_util.h        |   3 --
>  10 files changed, 272 insertions(+), 53 deletions(-)
> 

applied to iproute2-next after fixing up a whitespace issue and 2
checkpatch errors in patch 2.