Stephen Hemminger wrote:
> Here is the lastest version of the netem patch to use hrtimers.
> It is against the current net tree, so it will need adjusting to fit
> with new psched/ktime stuff.
Thanks, I'll add whats still needed to my patches.
-
To unsubscribe from this list: send the line "unsubs
Here is the lastest version of the netem patch to use hrtimers.
It is against the current net tree, so it will need adjusting to fit
with new psched/ktime stuff.
---
include/net/pkt_sched.h |3 ++
net/sched/sch_api.c | 30 +
net/sched/sch_netem.c | 68 +++
Stephen Hemminger wrote:
> Here is an experimental patch that changes the packet scheduler to use
> ktime instead of gettimeofday. This should be faster on 64 bit and avoid some
> of
> the math overhead issues with previous code.
>
> Also since it uses monotonic clock, it won't cause timing glitc
Here is an experimental patch that changes the packet scheduler to use
ktime instead of gettimeofday. This should be faster on 64 bit and avoid some of
the math overhead issues with previous code.
Also since it uses monotonic clock, it won't cause timing glitches when NTP
adjusts the clock.
---