Re: [RFC] use ktime for packet scheduling

2007-03-08 Thread Patrick McHardy
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

Re: [RFC] use ktime for packet scheduling

2007-03-07 Thread Stephen Hemminger
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 +++

Re: [RFC] use ktime for packet scheduling

2007-02-24 Thread Patrick McHardy
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

[RFC] use ktime for packet scheduling

2007-02-22 Thread Stephen Hemminger
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. ---