From owner-svn-src-all@FreeBSD.ORG Sat Jun 29 04:38:36 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7431C204; Sat, 29 Jun 2013 04:38:36 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pb0-x229.google.com (mail-pb0-x229.google.com [IPv6:2607:f8b0:400e:c01::229]) by mx1.freebsd.org (Postfix) with ESMTP id 41C9817E2; Sat, 29 Jun 2013 04:38:36 +0000 (UTC) Received: by mail-pb0-f41.google.com with SMTP id rp16so2988505pbb.14 for ; Fri, 28 Jun 2013 21:38:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; bh=EzZA2VA5TtvxzUau/unPbpEcvPbSuvvqEquY8/yYelk=; b=XAqM5zsLkQAXh56CBeRC8e9H+m3ZlMfA4KreAx/S9VQgmvA+7d4MUoi3B6obfm6UAx x+Soee5SzbcS5MkJTm41Zg/buGHud6Bg4LiZ/uCJKJo2QM1QFdEgTHfJ02eWINzT9SJT WurW05fpnuxJv4prWu4hCdnlSiWjJ96dg+8Ks16DAwrtvYJ0q3OVjDMMvvAym8/f5UzA TFPrsEcmaMEwlfaYMPc+FIwp+TaImYvFMUNhD6x5Uz/Xbz4vJAQ0FZA15x+61SGgd9yR +t++d/a4WK0WAtR6mTlHbazfVEr4oM549aIW7L3LYBn/KmXeWr8kXJoSBnX7tL4jPtmn oyaw== X-Received: by 10.68.216.161 with SMTP id or1mr14438960pbc.147.1372480716119; Fri, 28 Jun 2013 21:38:36 -0700 (PDT) Received: from [192.168.20.5] (c-98-203-241-95.hsd1.wa.comcast.net. [98.203.241.95]) by mx.google.com with ESMTPSA id bs3sm11066548pbc.42.2013.06.28.21.38.34 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 28 Jun 2013 21:38:35 -0700 (PDT) Subject: Re: svn commit: r252367 - head/sys/kern Mime-Version: 1.0 (Apple Message framework v1283) Content-Type: text/plain; charset=us-ascii From: Garrett Cooper In-Reply-To: <201306290435.r5T4Z5Ka031141@svn.freebsd.org> Date: Fri, 28 Jun 2013 21:38:32 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201306290435.r5T4Z5Ka031141@svn.freebsd.org> To: Peter Wemm X-Mailer: Apple Mail (2.1283) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Jun 2013 04:38:36 -0000 On Jun 28, 2013, at 9:35 PM, Peter Wemm wrote: > Author: peter > Date: Sat Jun 29 04:35:04 2013 > New Revision: 252367 > URL: http://svnweb.freebsd.org/changeset/base/252367 >=20 > Log: > Help out gcc. clang understands. >=20 > sys_generic.c:1510: warning: 'precision' may be used uninitialized > *** [sys_generic.o] Error code 1 ... > Modified: head/sys/kern/vfs_init.c > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/sys/kern/vfs_init.c Sat Jun 29 04:27:04 2013 = (r252366) > +++ head/sys/kern/vfs_init.c Sat Jun 29 04:35:04 2013 = (r252367) > @@ -201,6 +201,7 @@ vfs_register(struct vfsconf *vfc) > } else > vfc->vfc_typenum =3D maxvfsconf++; > TAILQ_INSERT_TAIL(&vfsconf, vfc, vfc_list); > + vfc->vfc_flags |=3D VFCF_JAIL; Was this portion of the diff intentional?=