From owner-svn-src-projects@FreeBSD.ORG Wed Apr 27 19:50:21 2011 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BF9C1065673; Wed, 27 Apr 2011 19:50:21 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D11E8FC19; Wed, 27 Apr 2011 19:50:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p3RJoKe4086831; Wed, 27 Apr 2011 19:50:20 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p3RJoKUI086829; Wed, 27 Apr 2011 19:50:20 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201104271950.p3RJoKUI086829@svn.freebsd.org> From: Marcel Moolenaar Date: Wed, 27 Apr 2011 19:50:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r221136 - projects/altix/sys/ia64/ia64 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2011 19:50:21 -0000 Author: marcel Date: Wed Apr 27 19:50:20 2011 New Revision: 221136 URL: http://svn.freebsd.org/changeset/base/221136 Log: Do not register the OS boot rendezvous entry point here/now. We want to pass a GP value that is useful during the wakeup, such as the physical address of a structure containing all the information and state necessary to bootstrap an AP. As such, it's better done in mp_machdep.c. Modified: projects/altix/sys/ia64/ia64/sal.c Modified: projects/altix/sys/ia64/ia64/sal.c ============================================================================== --- projects/altix/sys/ia64/ia64/sal.c Wed Apr 27 19:46:57 2011 (r221135) +++ projects/altix/sys/ia64/ia64/sal.c Wed Apr 27 19:50:20 2011 (r221136) @@ -101,10 +101,6 @@ ia64_sal_init(void) } case 5: { struct sal_ap_wakeup_descriptor *dp; -#ifdef SMP - struct ia64_sal_result result; - struct ia64_fdesc *fd; -#endif dp = (struct sal_ap_wakeup_descriptor*)p; if (dp->sale_mechanism != 0) { @@ -126,14 +122,6 @@ ia64_sal_init(void) if (bootverbose) printf("SAL: AP wake-up XIV: %#x\n", ia64_ipi_wakeup); - -#ifdef SMP - fd = (struct ia64_fdesc *) os_boot_rendez; - result = ia64_sal_entry(SAL_SET_VECTORS, - SAL_OS_BOOT_RENDEZ, ia64_tpa(fd->func), - ia64_tpa(fd->gp), 0, 0, 0, 0); -#endif - break; } }