svn commit: r220641 - head/sys/x86/isa

Jung-uk Kim jkim at FreeBSD.org
Thu Apr 14 19:11:46 UTC 2011


Author: jkim
Date: Thu Apr 14 19:11:45 2011
New Revision: 220641
URL: http://svn.freebsd.org/changeset/base/220641

Log:
  Use newly added rdtsc32() for DELAY(9) as well.

Modified:
  head/sys/x86/isa/clock.c

Modified: head/sys/x86/isa/clock.c
==============================================================================
--- head/sys/x86/isa/clock.c	Thu Apr 14 18:37:27 2011	(r220640)
+++ head/sys/x86/isa/clock.c	Thu Apr 14 19:11:45 2011	(r220641)
@@ -250,7 +250,7 @@ static u_int
 get_tsc(__unused struct timecounter *tc)
 {
 
-	return (rdtsc());
+	return (rdtsc32());
 }
 
 static __inline int


More information about the svn-src-all mailing list