From owner-cvs-src-old@FreeBSD.ORG Mon Jan 12 15:51:57 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D3EA106564A for ; Mon, 12 Jan 2009 15:51:57 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F124E8FC12 for ; Mon, 12 Jan 2009 15:51:56 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n0CFpupU035433 for ; Mon, 12 Jan 2009 15:51:56 GMT (envelope-from stas@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n0CFpt55035432 for cvs-src-old@freebsd.org; Mon, 12 Jan 2009 15:51:55 GMT (envelope-from stas@repoman.freebsd.org) Message-Id: <200901121551.n0CFpt55035432@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to stas@repoman.freebsd.org using -f From: Stanislav Sedov Date: Mon, 12 Jan 2009 15:48:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/share/man/man4 Makefile cpuctl.4 src/sys/amd64/amd64 support.S src/sys/amd64/conf NOTES src/sys/amd64/include cpufunc.h specialreg.h src/sys/conf files.amd64 files.i386 src/sys/dev/cpuctl cpuctl.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jan 2009 15:51:57 -0000 stas 2009-01-12 15:48:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) share/man/man4 Makefile sys/amd64/amd64 support.S sys/amd64/conf NOTES sys/amd64/include cpufunc.h specialreg.h sys/conf files.amd64 files.i386 sys/i386/conf NOTES sys/i386/i386 support.s sys/i386/include cpufunc.h specialreg.h sys/modules Makefile sys/sys priv.h usr.sbin Makefile Added files: (Branch: RELENG_7) share/man/man4 cpuctl.4 sys/dev/cpuctl cpuctl.c sys/modules/cpuctl Makefile sys/sys cpuctl.h usr.sbin/cpucontrol Makefile amd.c amd.h cpucontrol.8 cpucontrol.c cpucontrol.h intel.c intel.h Log: SVN rev 187099 on 2009-01-12 15:48:22Z by stas - MFC cpuctl and related commits into RELENG_7. First revision of usr.sbin/cpucontrol was merged directly into usr.sbin since there're no such directory in stable/7 yet. Subsequient changes went into usr.sbin/cpucontrol. Approved by: kib (mentor) Revision Changes Path 1.393.2.22 +2 -0 src/share/man/man4/Makefile 1.5.2.1 +152 -0 src/share/man/man4/cpuctl.4 (new) 1.128.2.1 +44 -0 src/sys/amd64/amd64/support.S 1.69.2.6 +6 -0 src/sys/amd64/conf/NOTES 1.148.10.1 +5 -0 src/sys/amd64/include/cpufunc.h 1.40.2.4 +7 -0 src/sys/amd64/include/specialreg.h 1.107.2.9 +1 -0 src/sys/conf/files.amd64 1.580.2.9 +1 -0 src/sys/conf/files.i386 1.3.2.1 +446 -0 src/sys/dev/cpuctl/cpuctl.c (new) 1.1244.2.7 +6 -0 src/sys/i386/conf/NOTES 1.119.2.1 +49 -0 src/sys/i386/i386/support.s 1.145.2.1 +5 -0 src/sys/i386/include/cpufunc.h 1.42.2.4 +7 -0 src/sys/i386/include/specialreg.h 1.540.2.27 +3 -0 src/sys/modules/Makefile 1.1.2.1 +8 -0 src/sys/modules/cpuctl/Makefile (new) 1.1.2.1 +52 -0 src/sys/sys/cpuctl.h (new) 1.15.2.6 +7 -1 src/sys/sys/priv.h 1.375.2.6 +3 -0 src/usr.sbin/Makefile 1.1.2.1 +9 -0 src/usr.sbin/cpucontrol/Makefile (new) 1.1.2.1 +183 -0 src/usr.sbin/cpucontrol/amd.c (new) 1.1.2.1 +49 -0 src/usr.sbin/cpucontrol/amd.h (new) 1.4.2.1 +123 -0 src/usr.sbin/cpucontrol/cpucontrol.8 (new) 1.2.2.1 +362 -0 src/usr.sbin/cpucontrol/cpucontrol.c (new) 1.1.2.1 +56 -0 src/usr.sbin/cpucontrol/cpucontrol.h (new) 1.1.2.1 +285 -0 src/usr.sbin/cpucontrol/intel.c (new) 1.1.2.1 +70 -0 src/usr.sbin/cpucontrol/intel.h (new)