public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [BK PATCH] i386 timer changes for 2.5.41
@ 2002-10-10 18:26 Greg KH
  2002-10-10 18:27 ` [PATCH] " Greg KH
  2002-10-10 18:33 ` [BK PATCH] " Linus Torvalds
  0 siblings, 2 replies; 8+ messages in thread
From: Greg KH @ 2002-10-10 18:26 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, johnstul

Hi Linus,

I've taken the i386 timer.c patches that John Stultz has been working on
for a while, made some minor tweaks, added them to a bk tree, and tested
them on all the boxes that I have access too.  Here's the resulting
changesets:

Please pull from bk://lsm.bkbits.net/timer-2.5

These split up the time.c code to handle different interrupt time
sources, moving the code into a new arck/i386/kernel/timers directory.
This is going to get more important as new timer sources become
available (like IBM's Summit chipset), and removes a lot of #ifdefs from
the existing code.

The differences from John's last patches are:
	- use bk to show the history of the time.c file moves
	- added proper documentation for struct timer_opts
	- init() in timer_opts now returns 0 for success
	- timer array is now static, and NULL terminated to make
	  adding new sources an easier patch.

thanks,

greg k-h

 arch/i386/Makefile                  |    2 
 arch/i386/kernel/time.c             |  374 -----------------------------------
 arch/i386/kernel/timers/Makefile    |   10 
 arch/i386/kernel/timers/timer.c     |   39 +++
 arch/i386/kernel/timers/timer_pit.c |  132 ++++++++++++
 arch/i386/kernel/timers/timer_tsc.c |  382 +++++++++++++++++++++++++++++++-----
 include/asm-i386/timer.h            |   22 ++
 7 files changed, 538 insertions(+), 423 deletions(-)
-----

ChangeSet@1.751, 2002-10-10 01:10:45-07:00, johnstul@us.ibm.com
  i386 timer core: intergrate the new timer code to use the two different timer files.

 arch/i386/Makefile                  |    2 
 arch/i386/kernel/time.c             |   23 ++----
 arch/i386/kernel/timers/Makefile    |   10 +++
 arch/i386/kernel/timers/timer.c     |    8 +-
 arch/i386/kernel/timers/timer_pit.c |   35 +++++++++-
 arch/i386/kernel/timers/timer_tsc.c |  120 ++++++++++++++++++++----------------
 include/asm-i386/timer.h            |    2 
 7 files changed, 128 insertions(+), 72 deletions(-)
------

ChangeSet@1.750, 2002-10-10 00:08:03-07:00, johnstul@us.ibm.com
  i386 timer core: move code out of time.c into timers/timer_pit.c and timers/timer_tsc.c

 arch/i386/kernel/time.c             |  351 ------------------------------------
 arch/i386/kernel/timers/timer_pit.c |   97 +++++++++
 arch/i386/kernel/timers/timer_tsc.c |  262 ++++++++++++++++++++++++++
 3 files changed, 359 insertions(+), 351 deletions(-)
------

ChangeSet@1.749, 2002-10-09 23:57:56-07:00, johnstul@us.ibm.com
  i386 timer core: introduce struct timer_ops
  
  provides the infrastructure needed via the timer_ops structure, 
  as well as the select_timer() function for choosing the best 
  available timer

 arch/i386/kernel/timers/timer.c |   31 +++++++++++++++++++++++++++++++
 include/asm-i386/timer.h        |   20 ++++++++++++++++++++
 2 files changed, 51 insertions(+)
------


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

end of thread, other threads:[~2002-10-10 19:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-10 18:26 [BK PATCH] i386 timer changes for 2.5.41 Greg KH
2002-10-10 18:27 ` [PATCH] " Greg KH
2002-10-10 18:29   ` Greg KH
2002-10-10 18:30     ` Greg KH
2002-10-10 18:33 ` [BK PATCH] " Linus Torvalds
2002-10-10 18:36   ` Greg KH
2002-10-10 18:38   ` Linus Torvalds
2002-10-10 19:27     ` [PATCH] minor " Greg KH

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