From owner-svn-src-head@FreeBSD.ORG Fri Sep 4 15:00:08 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DD001065676; Fri, 4 Sep 2009 15:00:08 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.cksoft.de (mail.cksoft.de [195.88.108.3]) by mx1.freebsd.org (Postfix) with ESMTP id C9F018FC17; Fri, 4 Sep 2009 15:00:07 +0000 (UTC) Received: from localhost (amavis.fra.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id 823D841C705; Fri, 4 Sep 2009 17:00:06 +0200 (CEST) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([195.88.108.3]) by localhost (amavis.fra.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id EK6te7-60ddP; Fri, 4 Sep 2009 17:00:05 +0200 (CEST) Received: by mail.cksoft.de (Postfix, from userid 66) id AE8FE41C6FC; Fri, 4 Sep 2009 17:00:05 +0200 (CEST) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id DEF6B4448E6; Fri, 4 Sep 2009 14:57:07 +0000 (UTC) Date: Fri, 4 Sep 2009 14:57:07 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: Konstantin Belousov In-Reply-To: <200909041453.n84ErCtU075966@svn.freebsd.org> Message-ID: <20090904145527.S68375@maildrop.int.zabbadoz.net> References: <200909041453.n84ErCtU075966@svn.freebsd.org> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r196829 - head/sys/i386/i386 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Sep 2009 15:00:08 -0000 On Fri, 4 Sep 2009, Konstantin Belousov wrote: > Author: kib > Date: Fri Sep 4 14:53:12 2009 > New Revision: 196829 > URL: http://svn.freebsd.org/changeset/base/196829 > > Log: > Add missing ';'. This hadn't been noticed for a year as up to r196810 PCPU_SET was a { .. } block. With r196811 it was changed to do { .. } while (0) and thus the missing ';' immediately became a syntax error. > Modified: > head/sys/i386/i386/machdep.c > > Modified: head/sys/i386/i386/machdep.c > ============================================================================== > --- head/sys/i386/i386/machdep.c Fri Sep 4 11:32:05 2009 (r196828) > +++ head/sys/i386/i386/machdep.c Fri Sep 4 14:53:12 2009 (r196829) > @@ -2570,7 +2570,7 @@ init386(first) > default_proc_ldt.ldt_base = (caddr_t)ldt; > default_proc_ldt.ldt_len = 6; > _default_ldt = (int)&default_proc_ldt; > - PCPU_SET(currentldt, _default_ldt) > + PCPU_SET(currentldt, _default_ldt); > PT_SET_MA(ldt, *vtopte((unsigned long)ldt) & ~PG_RW); > xen_set_ldt((unsigned long) ldt, (sizeof ldt_segs / sizeof ldt_segs[0])); > > -- Bjoern A. Zeeb What was I talking about and who are you again?