From owner-freebsd-xen@FreeBSD.ORG Fri Feb 6 09:06:03 2009 Return-Path: Delivered-To: freebsd-xen@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E3FF1065672; Fri, 6 Feb 2009 09:06:03 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: from mail-fx0-f16.google.com (mail-fx0-f16.google.com [209.85.220.16]) by mx1.freebsd.org (Postfix) with ESMTP id EC6228FC19; Fri, 6 Feb 2009 09:06:01 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: by fxm9 with SMTP id 9so34507fxm.19 for ; Fri, 06 Feb 2009 01:05:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=RK3IRmsK2klViPZNIPJ61+/Rl0TkHZN3xxRRYJFWtBY=; b=pYQilRJNj/sq93axjx18JX2rPgPrKfGwU2hHpRU74RH3n1dI45YDhsMlPHcZKsmfbu rkNJpthYLCG6N2GQJdBqBo+dzfBXJ9xgiH6nTqcWKXCwmqNV1MbmS7Kv4E/o3/0TZQC4 QeLqUPAcHe9qx11vodVhHiDNqScPr5QRYt4jE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; b=hYM/wDAl6K47/pnODaiJbVRmGG9xQytUO8yYD0GpEZXjcGxGf9gCRSMnAokWkHmfts WS1RU+IqIFl41hEFZNlg6wjHgkPZamOod13kudEFI4Jf7BAKHhC8rgGVdHwtCMxman1m y7Qqt0o+mWiwPkT6u6mavNZI6poJCcmt00nQg= Received: by 10.223.108.71 with SMTP id e7mr451029fap.33.1233911151941; Fri, 06 Feb 2009 01:05:51 -0800 (PST) Received: from ?10.30.1.235? (vpn-or.studi-planet.com [78.47.172.52]) by mx.google.com with ESMTPS id p9sm2084990fkb.1.2009.02.06.01.05.51 (version=SSLv3 cipher=RC4-MD5); Fri, 06 Feb 2009 01:05:51 -0800 (PST) From: Mister Olli To: Kip Macy In-Reply-To: <200902052141.n15LfRnB039904@svn.freebsd.org> References: <200902052141.n15LfRnB039904@svn.freebsd.org> Content-Type: text/plain Date: Fri, 06 Feb 2009 10:05:38 +0100 Message-Id: <1233911138.22390.7.camel@phoenix.blechhirn.net> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 Content-Transfer-Encoding: 7bit Cc: freebsd-xen@freebsd.org Subject: Re: svn commit: r188200 - head/sys/i386/i386 X-BeenThere: freebsd-xen@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mister.olli@googlemail.com List-Id: Discussion of the freebsd port to xen - implementation and usage List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Feb 2009 09:06:04 -0000 Hi, Just tested this. Works great :-)) -- Mr. Olli Am Donnerstag, den 05.02.2009, 21:41 +0000 schrieb Kip Macy: > Author: kmacy > Date: Thu Feb 5 21:41:27 2009 > New Revision: 188200 > URL: http://svn.freebsd.org/changeset/base/188200 > > Log: > halt APs on reboot > > Modified: > head/sys/i386/i386/vm_machdep.c > > Modified: head/sys/i386/i386/vm_machdep.c > ============================================================================== > --- head/sys/i386/i386/vm_machdep.c Thu Feb 5 21:35:40 2009 (r188199) > +++ head/sys/i386/i386/vm_machdep.c Thu Feb 5 21:41:27 2009 (r188200) > @@ -619,7 +619,7 @@ cpu_reset_real() > if (smp_processor_id() == 0) > HYPERVISOR_shutdown(SHUTDOWN_reboot); > else > - HYPERVISOR_shutdown(SHUTDOWN_reboot); > + HYPERVISOR_shutdown(SHUTDOWN_poweroff); > #endif > #ifdef CPU_ELAN > if (elan_mmcr != NULL) > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org"