Date: Fri, 3 Dec 2010 22:27:51 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r216163 - in head/sys: amd64/amd64 i386/i386 Message-ID: <201012032227.oB3MRp7b041174@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jkim Date: Fri Dec 3 22:27:51 2010 New Revision: 216163 URL: http://svn.freebsd.org/changeset/base/216163 Log: Revert r216161. It is not necessary because we zero-fill BSS anyway. Requested by: jhb Modified: head/sys/amd64/amd64/tsc.c head/sys/i386/i386/tsc.c Modified: head/sys/amd64/amd64/tsc.c ============================================================================== --- head/sys/amd64/amd64/tsc.c Fri Dec 3 22:07:07 2010 (r216162) +++ head/sys/amd64/amd64/tsc.c Fri Dec 3 22:27:51 2010 (r216163) @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); #include "cpufreq_if.h" -uint64_t tsc_freq = 0; +uint64_t tsc_freq; int tsc_is_broken; int tsc_is_invariant; static eventhandler_tag tsc_levels_tag, tsc_pre_tag, tsc_post_tag; Modified: head/sys/i386/i386/tsc.c ============================================================================== --- head/sys/i386/i386/tsc.c Fri Dec 3 22:07:07 2010 (r216162) +++ head/sys/i386/i386/tsc.c Fri Dec 3 22:27:51 2010 (r216163) @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); #include "cpufreq_if.h" -uint64_t tsc_freq = 0; +uint64_t tsc_freq; int tsc_is_broken; int tsc_is_invariant; u_int tsc_present;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012032227.oB3MRp7b041174>