From owner-svn-src-projects@FreeBSD.ORG Sat Apr 30 22:17:40 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 EC1BB106564A; Sat, 30 Apr 2011 22:17:40 +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 D8CEF8FC0A; Sat, 30 Apr 2011 22:17:40 +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 p3UMHeM2064555; Sat, 30 Apr 2011 22:17:40 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p3UMHehF064553; Sat, 30 Apr 2011 22:17:40 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201104302217.p3UMHehF064553@svn.freebsd.org> From: Marcel Moolenaar Date: Sat, 30 Apr 2011 22:17:40 +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: r221276 - 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: Sat, 30 Apr 2011 22:17:41 -0000 Author: marcel Date: Sat Apr 30 22:17:40 2011 New Revision: 221276 URL: http://svn.freebsd.org/changeset/base/221276 Log: White-space fixes. Modified: projects/altix/sys/ia64/ia64/machdep.c Modified: projects/altix/sys/ia64/ia64/machdep.c ============================================================================== --- projects/altix/sys/ia64/ia64/machdep.c Sat Apr 30 22:15:14 2011 (r221275) +++ projects/altix/sys/ia64/ia64/machdep.c Sat Apr 30 22:17:40 2011 (r221276) @@ -759,15 +759,15 @@ ia64_init(void) if (bootinfo->bi_kernend) kernend = round_page(bootinfo->bi_kernend); - /* - * Region 6 is direct mapped UC and region 7 is direct mapped - * WC. The details of this is controlled by the Alt {I,D}TLB - * handlers. Here we just make sure that they have the largest - * possible page size to minimise TLB usage. - */ - ia64_set_rr(IA64_RR_BASE(6), (6 << 8) | (PAGE_SHIFT << 2)); - ia64_set_rr(IA64_RR_BASE(7), (7 << 8) | (PAGE_SHIFT << 2)); - ia64_srlz_d(); + /* + * Region 6 is direct mapped UC and region 7 is direct mapped + * WC. The details of this is controlled by the Alt {I,D}TLB + * handlers. Here we just make sure that they have the largest + * possible page size to minimise TLB usage. + */ + ia64_set_rr(IA64_RR_BASE(6), (6 << 8) | (PAGE_SHIFT << 2)); + ia64_set_rr(IA64_RR_BASE(7), (7 << 8) | (PAGE_SHIFT << 2)); + ia64_srlz_d(); /* * Wire things up so we can call the firmware. @@ -778,18 +778,18 @@ ia64_init(void) ia64_sal_init(); calculate_frequencies(); - /* - * Setup the PCPU data for the bootstrap processor. It is needed - * by printf(). Also, since printf() has critical sections, we - * need to initialize at least pc_curthread. - */ - pcpup = &pcpu0; - ia64_set_k4((u_int64_t)pcpup); - pcpu_init(pcpup, 0, sizeof(pcpu0)); - dpcpu_init((void *)kernend, 0); - cpu_pcpu_setup(pcpup, ~0U, ia64_get_lid()); - kernend += DPCPU_SIZE; - PCPU_SET(curthread, &thread0); + /* + * Setup the PCPU data for the bootstrap processor. It is needed + * by printf(). Also, since printf() has critical sections, we + * need to initialize at least pc_curthread. + */ + pcpup = &pcpu0; + ia64_set_k4((u_int64_t)pcpup); + pcpu_init(pcpup, 0, sizeof(pcpu0)); + dpcpu_init((void *)kernend, 0); + cpu_pcpu_setup(pcpup, ~0U, ia64_get_lid()); + kernend += DPCPU_SIZE; + PCPU_SET(curthread, &thread0); /* * Initialize the console before we print anything out.