public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] -tip Timekeeping changes for 2.6.36
@ 2010-07-14  0:56 John Stultz
  2010-07-14  0:56 ` [PATCH 01/11] x86: Fix vtime/file timestamp inconsistencies John Stultz
  0 siblings, 1 reply; 33+ messages in thread
From: John Stultz @ 2010-07-14  0:56 UTC (permalink / raw)
  To: LKML; +Cc: John Stultz, Thomas Gleixner

Hey Thomas,

	I just wanted to send you my pending queue of timekeeping
change for 2.6.36. It would be nice to get these into the -tip 
tree for testing prior to the merge window.

thanks
-john

CC: Thomas Gleixner <tglx@linutronix.de>

John Stultz (11):
  x86: Fix vtime/file timestamp inconsistencies
  Implement timespec_add
  time: Kill off CONFIG_GENERIC_TIME
  powerpc: Simplify update_vsyscall
  powerpc: Cleanup xtime usage
  Fix update_vsyscall to provide wall_to_monotonic offset
  Convert um to use read_persistent_clock
  Cleanup hrtimer.c's direct access to wall_to_monotonic
  Make xtime and wall_to_monotonic static
  Convert common x86 clocksources to use clocksource_register_hz/khz
  Add __clocksource_updatefreq_hz/khz methods

 Documentation/feature-removal-schedule.txt |   10 ----
 Documentation/kernel-parameters.txt        |    3 +-
 arch/alpha/Kconfig                         |    4 --
 arch/arm/Kconfig                           |    4 --
 arch/avr32/Kconfig                         |    3 -
 arch/blackfin/Kconfig                      |    3 -
 arch/cris/Kconfig                          |    3 -
 arch/frv/Kconfig                           |    4 --
 arch/h8300/Kconfig                         |    4 --
 arch/ia64/Kconfig                          |    4 --
 arch/ia64/kernel/time.c                    |    7 ++-
 arch/m32r/Kconfig                          |    3 -
 arch/m68k/Kconfig                          |    3 -
 arch/m68knommu/Kconfig                     |    4 --
 arch/microblaze/Kconfig                    |    3 -
 arch/mips/Kconfig                          |    4 --
 arch/mn10300/Kconfig                       |    3 -
 arch/parisc/Kconfig                        |    4 --
 arch/powerpc/Kconfig                       |    3 -
 arch/powerpc/kernel/time.c                 |   61 ++++++++++------------
 arch/s390/Kconfig                          |    3 -
 arch/s390/kernel/time.c                    |    8 ++--
 arch/score/Kconfig                         |    3 -
 arch/sh/Kconfig                            |    3 -
 arch/sparc/Kconfig                         |    3 -
 arch/um/Kconfig.common                     |    4 --
 arch/um/kernel/time.c                      |   13 +++--
 arch/x86/Kconfig                           |    5 +--
 arch/x86/kernel/hpet.c                     |   13 +++--
 arch/x86/kernel/tsc.c                      |    6 +--
 arch/x86/kernel/vsyscall_64.c              |   17 ++++--
 arch/xtensa/Kconfig                        |    3 -
 drivers/Makefile                           |    4 +-
 drivers/acpi/acpi_pad.c                    |    2 +-
 drivers/acpi/processor_idle.c              |    2 +-
 drivers/clocksource/acpi_pm.c              |    9 +---
 drivers/misc/Kconfig                       |    4 +-
 include/linux/clocksource.h                |   17 +++++-
 include/linux/time.h                       |   21 ++++++-
 kernel/hrtimer.c                           |    9 ++--
 kernel/time.c                              |   16 ------
 kernel/time/Kconfig                        |    4 +-
 kernel/time/clocksource.c                  |   33 +++++++++---
 kernel/time/timekeeping.c                  |   79 +++++++---------------------
 kernel/trace/Kconfig                       |    4 +-
 45 files changed, 163 insertions(+), 259 deletions(-)


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

end of thread, other threads:[~2010-07-28  1:33 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-14  0:56 [PATCH 00/11] -tip Timekeeping changes for 2.6.36 John Stultz
2010-07-14  0:56 ` [PATCH 01/11] x86: Fix vtime/file timestamp inconsistencies John Stultz
2010-07-14  0:56   ` [PATCH 02/11] Implement timespec_add John Stultz
2010-07-14  0:56     ` [PATCH 03/11] time: Kill off CONFIG_GENERIC_TIME John Stultz
2010-07-14  0:56       ` [PATCH 04/11] powerpc: Simplify update_vsyscall John Stultz
2010-07-14  0:56         ` [PATCH 05/11] powerpc: Cleanup xtime usage John Stultz
2010-07-14  0:56           ` [PATCH 06/11] Fix update_vsyscall to provide wall_to_monotonic offset John Stultz
2010-07-14  0:56             ` [PATCH 07/11] Convert um to use read_persistent_clock John Stultz
2010-07-14  0:56               ` [PATCH 08/11] Cleanup hrtimer.c's direct access to wall_to_monotonic John Stultz
2010-07-14  0:56                 ` [PATCH 09/11] Make xtime and wall_to_monotonic static John Stultz
2010-07-14  0:56                   ` [PATCH 10/11] Convert common x86 clocksources to use clocksource_register_hz/khz John Stultz
2010-07-14  0:56                     ` [PATCH 11/11] Add __clocksource_updatefreq_hz/khz methods John Stultz
2010-07-27 10:49                       ` [tip:timers/clocksource] clocksource: " tip-bot for John Stultz
2010-07-27 10:48                     ` [tip:timers/clocksource] x86: Convert common clocksources to use clocksource_register_hz/khz tip-bot for John Stultz
2010-07-27 10:48                   ` [tip:timers/clocksource] timekeeping: Make xtime and wall_to_monotonic static tip-bot for John Stultz
2010-07-27 10:48                 ` [tip:timers/clocksource] hrtimer: Cleanup direct access to wall_to_monotonic tip-bot for John Stultz
2010-07-27 10:47               ` [tip:timers/clocksource] um: Convert to use read_persistent_clock tip-bot for John Stultz
2010-07-27 10:47             ` [tip:timers/clocksource] timkeeping: Fix update_vsyscall to provide wall_to_monotonic offset tip-bot for John Stultz
2010-07-27 10:47           ` [tip:timers/clocksource] powerpc: Cleanup xtime usage tip-bot for John Stultz
2010-07-27 10:46         ` [tip:timers/clocksource] powerpc: Simplify update_vsyscall tip-bot for John Stultz
2010-07-27 23:41         ` [PATCH 04/11] " Paul Mackerras
2010-07-28  1:33           ` john stultz
2010-07-27 10:46       ` [tip:timers/clocksource] time: Kill off CONFIG_GENERIC_TIME tip-bot for John Stultz
2010-07-27 10:46     ` [tip:timers/clocksource] time: Implement timespec_add tip-bot for John Stultz
2010-07-14  2:40   ` [PATCH 01/11] x86: Fix vtime/file timestamp inconsistencies KOSAKI Motohiro
2010-07-14 16:19     ` john stultz
2010-07-15  1:51       ` KOSAKI Motohiro
2010-07-15  2:46         ` john stultz
2010-07-15  4:41           ` KOSAKI Motohiro
2010-07-15 19:30             ` john stultz
2010-07-15  2:51         ` john stultz
2010-07-15  4:41           ` KOSAKI Motohiro
2010-07-27 10:45   ` [tip:timers/clocksource] " tip-bot for John Stultz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox