mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: john stultz <johnstul@us.ibm.com>
Cc: lkml <linux-kernel@vger.kernel.org>,
	Darren Hart <dvhltc@us.ibm.com>,
	Nishanth Aravamudan <nacc@us.ibm.com>,
	Frank Sorenson <frank@tuxrocks.com>,
	George Anzinger <george@mvista.com>,
	Roman Zippel <zippel@linux-m68k.org>,
	Ulrich Windl <ulrich.windl@rz.uni-regensburg.de>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH 0/13] Time: Generic Timeofday Subsystem (v B11)
Date: Sat, 26 Nov 2005 15:58:24 +0100	[thread overview]
Message-ID: <20051126145824.GA13726@elte.hu> (raw)
In-Reply-To: <20051126145043.GA12999@elte.hu>


* Ingo Molnar <mingo@elte.hu> wrote:

> While we are at introducing and moving around code, i've done a big 
> cleanup of all code touched/introduced by your patchset. The 
> gtod-B11-cleanup.tar.gz file containing the cleanup patch-series can 
> be found at:
> 
>    http://redhat.com/~mingo/gtod-patches/
> 
> (i'll send the patches individually as well, as replies to your mails).

the patch-queue goes like this:

timeofday-ntp-part1.patch
timeofday-ntp-part2.patch
timeofday-clocksource-core.patch
timeofday-core.patch
timeofday-arch-i386-part1.patch
timeofday-arch-i386-part2.patch
timeofday-arch-i386-part3.patch
timeofday-arch-i386-part4.patch
timeofday-arch-i386-part5.patch
timeofday-arch-i386-part6.patch
timeofday-arch-x86-64-part1.patch
timeofday-arch-x86-64-part2.patch
timeofday-paranoid-debug.patch
timeofday-paranoid-debug-fix.patch

warn-on-once.patch

timeofday-ntp-part1-cleanup.patch
timeofday-ntp-part2-cleanup.patch
timeofday-clocksource-core-cleanup.patch
timeofday-core-cleanup.patch
timeofday-arch-i386-part1-cleanup.patch
timeofday-arch-i386-part2-part3-cleanup.patch
timeofday-arch-i386-part5-cleanup.patch
timeofday-arch-x86-64-part1-cleanup.patch
timeofday-arch-x86-64-part2-cleanup.patch

i.e. all the new patches come after the B11 patches. The diffstat of all 
the changes i did:

 Documentation/kernel-parameters.txt |    2 
 arch/i386/kernel/hpet.c             |   35 +--
 arch/i386/kernel/i8253.c            |   29 +--
 arch/i386/kernel/tsc.c              |  156 +++++++++-------
 arch/i386/lib/delay.c               |   28 +-
 arch/x86_64/kernel/time.c           |   91 ++++-----
 arch/x86_64/kernel/vsyscall.c       |   45 ++--
 drivers/clocksource/acpi_pm.c       |   50 ++---
 drivers/clocksource/cyclone.c       |   71 +++----
 drivers/clocksource/tsc-interp.c    |   55 ++---
 include/asm-generic/bug.h           |   10 +
 include/asm-generic/timeofday.h     |    3 
 include/asm-i386/tsc.h              |   12 -
 include/linux/clocksource.h         |   43 ++--
 include/linux/timex.h               |   12 -
 kernel/time.c                       |  347 ++++++++++++++++++++----------------
 kernel/time/clocksource.c           |   80 ++++----
 kernel/time/jiffies.c               |   23 +-
 kernel/time/timeofday.c             |  195 ++++++++++----------
 kernel/timer.c                      |  158 +++++++++-------
 20 files changed, 808 insertions(+), 637 deletions(-)

	Ingo

      reply	other threads:[~2005-11-26 14:58 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-22  1:35 john stultz
2005-11-22  1:35 ` [PATCH 1/13] Time: Reduced NTP rework (part 1) john stultz
2005-11-26 14:52   ` [patch] warn-on-once.patch Ingo Molnar
2005-11-26 15:03     ` Tim Schmielau
2005-11-26 15:03     ` Michal Schmidt
2005-11-26 15:17     ` Ingo Molnar
2005-11-26 15:21       ` Ingo Molnar
2005-11-26 14:52   ` [PATCH 1/13] Time: Reduced NTP rework (part 1) Ingo Molnar
2005-11-22  1:35 ` [PATCH 2/13] Time: Reduced NTP Rework (part 2) john stultz
2005-11-26 14:53   ` Ingo Molnar
2005-11-22  1:35 ` [PATCH 3/13] Time: Clocksource Infrastructure john stultz
2005-11-26 14:53   ` Ingo Molnar
2005-11-22  1:35 ` [PATCH 4/13] Time: Generic Timekeeping Infrastructure john stultz
2005-11-26 14:54   ` Ingo Molnar
2005-11-22  1:35 ` [PATCH 5/13] Time: i386 Conversion - part 1: Move timer_pit.c to i8253.c john stultz
2005-11-26 14:54   ` Ingo Molnar
2005-11-22  1:35 ` [PATCH 6/13] Time: i386 Conversion - part 2: Move timer_tsc.c to tsc.c john stultz
2005-11-26 14:54   ` Ingo Molnar
2005-11-22  1:36 ` [PATCH 7/13] Time: i386 Conversion - part 3: Rework TSC Support john stultz
2005-11-22  1:36 ` [PATCH 8/13] Time: i386 Conversion - part 4: ACPI PM variable renaming john stultz
2005-11-22  1:36 ` [PATCH 9/13] Time: i386 Conversion - part 5: Enable Generic Timekeeping john stultz
2005-11-26 14:55   ` Ingo Molnar
2005-11-22  1:36 ` [PATCH 10/13] Time: i386 Conversion - part 6: Remove Old Code john stultz
2005-11-22  1:36 ` [PATCH 11/13] Time: x86-64 Conversion to Generic Timekeeping john stultz
2005-11-26 14:55   ` Ingo Molnar
2005-11-26 15:11     ` Ingo Molnar
2005-11-22  1:36 ` [PATCH 12/13] Time: i386/x86-64 Clocksource Drivers john stultz
2005-11-26 14:55   ` Ingo Molnar
2005-11-22  1:36 ` [PATCH 13/13] Time: Generic Timekeeping Paraniod Debug Patch john stultz
2005-11-22  2:03 ` [PATCH 0/13] Time: Generic Timeofday Subsystem (v B11) john stultz
2005-11-26 14:50 ` Ingo Molnar
2005-11-26 14:58   ` Ingo Molnar [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=20051126145824.GA13726@elte.hu \
    --to=mingo@elte.hu \
    --cc=dvhltc@us.ibm.com \
    --cc=frank@tuxrocks.com \
    --cc=george@mvista.com \
    --cc=johnstul@us.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nacc@us.ibm.com \
    --cc=tglx@linutronix.de \
    --cc=ulrich.windl@rz.uni-regensburg.de \
    --cc=zippel@linux-m68k.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

all inboxes | Powered by JetHome®