netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Auke Kok <auke-jan.h.kok@intel.com>
To: jgarzik@pobox.com
Cc: David Miller <davem@davemloft.net>,
	akpm@linux-foundation.org, netdev@vger.kernel.org,
	arjan@linux.intel.com
Subject: Re: [patch 01/11] user of the jiffies rounding code: Networking
Date: Tue, 06 Feb 2007 10:45:41 -0800	[thread overview]
Message-ID: <45C8CCD5.3030202@intel.com> (raw)
In-Reply-To: <20070205.180111.36663426.davem@davemloft.net>

David Miller wrote:
> From: akpm@linux-foundation.org
> Date: Mon, 05 Feb 2007 16:30:52 -0800
> 
>> From: Arjan van de Ven <arjan@linux.intel.com>
>>
>> This patch introduces users of the round_jiffies() function in the networking
>> code.
>>
>> These timers all were of the "about once a second" or "about once every X
>> seconds" variety and several showed up in the "what wakes the cpu up" profiles
>> that the tickless patches provide.  Some timers are highly dynamic based on
>> network load; but even on low activity systems they still show up so the
>> rounding is done only in cases of low activity, allowing higher frequency
>> timers in the high activity case.
>>
>> The various hardware watchdogs are an obvious case; they run every 2 seconds
>> but aren't otherwise specific of exactly when they need to run.
>>
>> Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
>> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> 
> I pulled in everything except the e1000 driver change, Jeff please
> suck that in, thanks.

Jeff,

And add my:

Acked-by: Auke Kok <auke-jan.h.kok@intel.com>


Thanks

Auke

> 
> Arjan, btw:
> 
>> +	if (dst_gc_timer_expires > 4*HZ)
>> +		mod_timer(&dst_gc_timer,
>> +			round_jiffies(jiffies + dst_gc_timer_expires));
>> +	else
>> +		mod_timer(&dst_gc_timer, jiffies + dst_gc_timer_expires);
>    ^^^^^^^^^^^^^
> 
> That line begins "TAB SPACE TAB", and lo' and behold GIT
> catch this when I applied it :-)  I fixed it up by hand
> and reapplied, so don't worry about this instance.
> 
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2007-02-06 18:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-06  0:30 [patch 01/11] user of the jiffies rounding code: Networking akpm
2007-02-06  2:01 ` David Miller
2007-02-06 18:45   ` Auke Kok [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=45C8CCD5.3030202@intel.com \
    --to=auke-jan.h.kok@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=arjan@linux.intel.com \
    --cc=davem@davemloft.net \
    --cc=jgarzik@pobox.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).