Re: device polling takes more CPU hits??

From: Luigi Rizzo (rizzo_at_icir.org)
Date: 07/27/04

  • Next message: Johan Bucht: "re(4) problems (realtek 8169S)"
    Date: Tue, 27 Jul 2004 13:32:16 -0700
    To: Marko Zec <zec@tel.fer.hr>
    
    

    On Tue, Jul 27, 2004 at 09:56:07PM +0200, Marko Zec wrote:
    > On Tuesday 27 July 2004 16:39, Luigi Rizzo wrote:
    > > > what timecounter method are you using, i8254 or TSC? The polling code
    > > > frequently calls microuptime(), which is very expensive (slow) with
    > > > i8254,
    > >
    > > it is not _that_ frequently, it should be twice per tick. Even with
    > > the 8254 i don't think this amounts to more than 4-5us, which
    > > is a couple of percent.
    >
    >
    > Luigi,
    >
    > I'm just trying to dig into how the current polling implementation is supposed
    > to work, so pls. correct me if I'm wrong.

    ok you are probably right on the number, i haven't looked
    at the code in a while. I suppose that technically the
    polling code could be optimized to use only one extra call,
    (relying on the implicit or explicit one done in the hardclock interrupt)
    but as your numbers show, there is not much of a point...

    cheers
    luigi

    > Doesn't the polling code do three calls to microuptime() per each tick - the
    > first one in hardclock_device_poll(), then again in netisr_poll(), and
    > finally in netisr_pollmore()? Actually, there might be several iterations of
    > netisr_poll() and netisr_pollmore() in a single clock tick, depending on
    > traffic load and how high was kern.polling.each_burst set. Nevertheless, the
    > code ensures microuptime() is called only in the first call to _poll, and
    > only on the last _pollmore() call, which is cool.
    >
    > Here are some very rough measurements on how long can a single microuptime()
    > call last in average:
    >
    > P-III@800 MHz P-III@1200 MHz
    > i8254 2400 T (3 us) 3600 T (3 us)
    > TSC 120 T (0.15 us) 120 T (0.1 us)
    >
    > So, if there are three polling-related calls to microuptime() on each clock
    > tick, this would equal to 9 us per tick. Given the observed systems runs with
    > HZ=4000, this translates to about 35 ms of overhead each second, or only 3.5%
    > of "wasted" CPU cycles. So basically you're right, the problem should be
    > somewhere else...
    >
    > Marko
    _______________________________________________
    freebsd-net@freebsd.org mailing list
    http://lists.freebsd.org/mailman/listinfo/freebsd-net
    To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org"


  • Next message: Johan Bucht: "re(4) problems (realtek 8169S)"

    Relevant Pages

    • Re: device polling takes more CPU hits??
      ... On Tuesday 27 July 2004 16:39, Luigi Rizzo wrote: ... I'm just trying to dig into how the current polling implementation is supposed ... Doesn't the polling code do three calls to microuptime() per each tick - the ...
      (freebsd-net)
    • Re: time delay
      ... Another serious problem here is that in general, you cannot reliably compare ... One should compare difference between starting tick count and current tick ... > the problem to see if polling can be avoided. ... > asynchronous notification, see my essay on asynchronous process ...
      (microsoft.public.vc.mfc)
    • Re: 4.7 vs 5.2.1 SMP/UP bridging performance
      ... > original author of the polling code (Luigi?) may have some input on ... packets to reduce the number of locking ops. ... in having multiple polling loops work on the same interface. ...
      (freebsd-current)
    • Re: [REVIEW/TEST] polling(4) changes
      ... >> It adds a stub function call every tick. ... >> immediately if no interfaces do polling. ...
      (freebsd-net)
    • Re: [REVIEW/TEST] polling(4) changes
      ... >> It adds a stub function call every tick. ... >> immediately if no interfaces do polling. ...
      (freebsd-arch)