From owner-cvs-all@FreeBSD.ORG Wed Oct 22 13:16:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A19916A4BF; Wed, 22 Oct 2003 13:16:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB4143FAF; Wed, 22 Oct 2003 13:15:21 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9MKFBXJ022575; Wed, 22 Oct 2003 13:15:11 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9MKFBCf022574; Wed, 22 Oct 2003 13:15:11 -0700 (PDT) (envelope-from jhb) Message-Id: <200310222015.h9MKFBCf022574@repoman.freebsd.org> From: John Baldwin Date: Wed, 22 Oct 2003 13:15:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/i386/i386 machdep.c mp_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Oct 2003 20:16:41 -0000 jhb 2003/10/22 13:15:10 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/i386/i386 machdep.c mp_machdep.c Log: MFC: Always enable hyperthreading to avoid lockups due to APIC interrupt routing problems. - Enable cpu_idle_hlt for the SMP case by default since that significantly helps HTT performance. - Provide a facility for disabling individual CPUs by refusing to schedule processes on them. - Use the above to provide a sysctl for disabling or enabling all logical CPUs. The default is to disable all logical CPUs. - Remove the 'HTT' kernel option now that it is obsolete. Submitted by: ps Approved by: re (murray) Revision Changes Path 1.385.2.34 +6 -4 src/sys/i386/i386/machdep.c 1.115.2.19 +96 -24 src/sys/i386/i386/mp_machdep.c