All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL timers] Timer-wheel bandaids^Wcommits
@ 2014-01-29 23:39 Paul E. McKenney
  2014-01-30  5:44 ` Preeti Murthy
  0 siblings, 1 reply; 3+ messages in thread
From: Paul E. McKenney @ 2014-01-29 23:39 UTC (permalink / raw)
  To: mingo; +Cc: josh, peterz, oleg, rostedt, bitbucket, tglx, linux-kernel

Hello, Ingo,

This pull request contains latency bandaids^Woptimizations to the
timer-wheel code that are useful in conjunction with NO_HZ_FULL Kconfig
option.  These optimizations reduce the jiffy-by-jiffy looping in cases
where there is either zero or one timers in the timer wheel, which is
a common case for NO_HZ_FULL "worker" CPUs that run almost entirely
in usermode for a single task.

Each of these commits has at least two Reviewed-by, one Acked-by, and
one Tested-by tag, so they are ready for more extensive testing in -tip.

							Thanx, Paul

The following changes since commit 00e2bcd6d35f59fce7fa0e76e24d08f74c6a8506:

  clocksource: Timer-sun5i: Switch to sched_clock_register() (2014-01-19 13:23:23 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/timers

for you to fetch changes up to 6f089d0be7fef9705b3a7755b05d1092e772b910:

  timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0 (2014-01-29 15:25:16 -0800)

----------------------------------------------------------------
Oleg Nesterov (1):
      timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0

Paul E. McKenney (4):
      timers: Track total number of timers in list
      timers: Reduce __run_timers() latency for empty list
      timers: Reduce future __run_timers() latency for newly emptied list
      timers: Reduce future __run_timers() latency for first add to empty list

 kernel/timer.c | 30 ++++++++++++++++++++++++++++--
 1 file changed, 28 insertions(+), 2 deletions(-)


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL timers] Timer-wheel bandaids^Wcommits
  2014-01-29 23:39 [GIT PULL timers] Timer-wheel bandaids^Wcommits Paul E. McKenney
@ 2014-01-30  5:44 ` Preeti Murthy
  2014-01-30  8:48   ` Paul E. McKenney
  0 siblings, 1 reply; 3+ messages in thread
From: Preeti Murthy @ 2014-01-30  5:44 UTC (permalink / raw)
  To: Paul McKenney
  Cc: mingo, josh, Peter Zijlstra, oleg, rostedt, bitbucket,
	Thomas Gleixner, LKML, Preeti U Murthy

Hi Paul,

The commit id:e1d690cdc07637131ba4334: timers: Track total number of
timers in list has
a minor glitch in the changelog.

I am referring to your
git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
rcu/timers branch.

"even if ->active_timers is zero, there might well be *non-deferrable*
timers in the list"

s/non-deferrable/deferrable.

Thanks

Regards
Preeti U Murthy

On Thu, Jan 30, 2014 at 5:09 AM, Paul E. McKenney
<paulmck@linux.vnet.ibm.com> wrote:
> Hello, Ingo,
>
> This pull request contains latency bandaids^Woptimizations to the
> timer-wheel code that are useful in conjunction with NO_HZ_FULL Kconfig
> option.  These optimizations reduce the jiffy-by-jiffy looping in cases
> where there is either zero or one timers in the timer wheel, which is
> a common case for NO_HZ_FULL "worker" CPUs that run almost entirely
> in usermode for a single task.
>
> Each of these commits has at least two Reviewed-by, one Acked-by, and
> one Tested-by tag, so they are ready for more extensive testing in -tip.
>
>                                                         Thanx, Paul
>
> The following changes since commit 00e2bcd6d35f59fce7fa0e76e24d08f74c6a8506:
>
>   clocksource: Timer-sun5i: Switch to sched_clock_register() (2014-01-19 13:23:23 +0100)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/timers
>
> for you to fetch changes up to 6f089d0be7fef9705b3a7755b05d1092e772b910:
>
>   timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0 (2014-01-29 15:25:16 -0800)
>
> ----------------------------------------------------------------
> Oleg Nesterov (1):
>       timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0
>
> Paul E. McKenney (4):
>       timers: Track total number of timers in list
>       timers: Reduce __run_timers() latency for empty list
>       timers: Reduce future __run_timers() latency for newly emptied list
>       timers: Reduce future __run_timers() latency for first add to empty list
>
>  kernel/timer.c | 30 ++++++++++++++++++++++++++++--
>  1 file changed, 28 insertions(+), 2 deletions(-)
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL timers] Timer-wheel bandaids^Wcommits
  2014-01-30  5:44 ` Preeti Murthy
@ 2014-01-30  8:48   ` Paul E. McKenney
  0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2014-01-30  8:48 UTC (permalink / raw)
  To: Preeti Murthy
  Cc: mingo, josh, Peter Zijlstra, oleg, rostedt, bitbucket,
	Thomas Gleixner, LKML, Preeti U Murthy

On Thu, Jan 30, 2014 at 11:14:57AM +0530, Preeti Murthy wrote:
> Hi Paul,
> 
> The commit id:e1d690cdc07637131ba4334: timers: Track total number of
> timers in list has
> a minor glitch in the changelog.
> 
> I am referring to your
> git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
> rcu/timers branch.
> 
> "even if ->active_timers is zero, there might well be *non-deferrable*
> timers in the list"
> 
> s/non-deferrable/deferrable.

Good catch, fixed!  New pull request below, very similar to the last one.

							Thanx, Paul
------------------------------------------------------------------------

Hello, Ingo,

This pull request contains latency bandaids^Woptimizations to the
timer-wheel code that are useful in conjunction with NO_HZ_FULL Kconfig
option.  These optimizations reduce the jiffy-by-jiffy looping in cases
where there is either zero or one timers in the timer wheel, which is
a common case for NO_HZ_FULL "worker" CPUs that run almost entirely
in usermode for a single task.

Each of these commits has at least two Reviewed-by, one Acked-by, and
one Tested-by tag, so they are ready for more extensive testing in -tip.

                                                        Thanx, Paul

The following changes since commit 00e2bcd6d35f59fce7fa0e76e24d08f74c6a8506:

  clocksource: Timer-sun5i: Switch to sched_clock_register() (2014-01-19 13:23:23 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/timers

for you to fetch changes up to 73bffac4cf615295055df086e95d0284754aa708

  timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0 (2014-01-30 00:41:53 -0800)

----------------------------------------------------------------
Oleg Nesterov (1):
      timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0

Paul E. McKenney (4):
      timers: Track total number of timers in list
      timers: Reduce __run_timers() latency for empty list
      timers: Reduce future __run_timers() latency for newly emptied list
      timers: Reduce future __run_timers() latency for first add to empty list

 kernel/timer.c | 30 ++++++++++++++++++++++++++++--
 1 file changed, 28 insertions(+), 2 deletions(-)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-01-30  8:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-29 23:39 [GIT PULL timers] Timer-wheel bandaids^Wcommits Paul E. McKenney
2014-01-30  5:44 ` Preeti Murthy
2014-01-30  8:48   ` Paul E. McKenney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.