From owner-svn-src-all@FreeBSD.ORG Fri May 18 15:24:43 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3AABB1065674; Fri, 18 May 2012 15:24:43 +0000 (UTC) (envelope-from gleb.kurtsou@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0DA798FC18; Fri, 18 May 2012 15:24:41 +0000 (UTC) Received: by lbon10 with SMTP id n10so3011350lbo.13 for ; Fri, 18 May 2012 08:24:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=k6lGDTq0rLudRcD3B3w1BjAspqNh1fKBSdU8BsXj130=; b=zLMgbZJyvF/DEhkKWMYidrAottAbxufAOtboYwxNoJE4Eoc5t6YSC+vkY+mXTIZKYQ wzCXHQ/R0DG+26/IvDECFm9uVAyqfrjyEioxO0eIHQxc0B0vBXf9ELA4YeoSjknvtJm8 oL+gLD3zrMo+DjKKavfCdKfnZNv17y2NXXi6vN6EeLW6hpGJhDFtST7aBG2pNogtqslU Zk4gtyCt16gmfejt/QTa90Cm9JRQAxCNubuLz+hU5Pa772UuCj+JHP9ML0ckjhfiuASL 1ILcbubXb+7cL+/4DziBYEditnNr32nhN60m+fmDg3GRP5I+sAGzSeBVOp4w1EQqFNQ9 uIpA== Received: by 10.152.114.106 with SMTP id jf10mr11490284lab.16.1337354680020; Fri, 18 May 2012 08:24:40 -0700 (PDT) Received: from localhost ([78.157.92.5]) by mx.google.com with ESMTPS id gw17sm12799510lab.11.2012.05.18.08.24.37 (version=SSLv3 cipher=OTHER); Fri, 18 May 2012 08:24:38 -0700 (PDT) Date: Fri, 18 May 2012 18:24:36 +0300 From: Gleb Kurtsou To: John Baldwin Message-ID: <20120518152436.GA9116@reks> References: <201205181001.q4IA1VED044374@svn.freebsd.org> <201205180941.48076.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201205180941.48076.jhb@freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r235601 - head/include/protocols X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 18 May 2012 15:24:43 -0000 On (18/05/2012 09:41), John Baldwin wrote: > On Friday, May 18, 2012 6:01:31 am Gleb Kurtsou wrote: > > Author: gleb > > Date: Fri May 18 10:01:31 2012 > > New Revision: 235601 > > URL: http://svn.freebsd.org/changeset/base/235601 > > > > Log: > > Don't use ino_t in dumprestore protocol definition. > > > > Since ino_t size is about to change to 64-bits, replace ino_t used in > > dump protocol definition with 32-bit dump_ino_t to preserve backward > > compatibility. At some point, it may be necessary to use spare fields > > in struct in order to fully support 64-bit inode numbers. > > > > Sponsored by: Google Summer of Code 2011 > > A question about your stat changes: did you expand dev_t to 32 bits for the > AFS folks, or did you leave it as 16 bits? dev_t is already 32-bit. Changing it to 64-bit was discussed at some point and from what I recall no decision was made: http://marc.info/?t=129119478700005&r=1&w=2 I'm going to commit preparatory changes only for now. Then publish diff for testing. We can still change dev_t to 64-bit if needed. Although I didn't work on it. Thanks, Gleb.