From owner-soc-status@FreeBSD.ORG Mon Jul 25 07:54:38 2011 Return-Path: Delivered-To: soc-status@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8532106564A; Mon, 25 Jul 2011 07:54:38 +0000 (UTC) (envelope-from gleb.kurtsou@gmail.com) Received: from mail-fx0-f44.google.com (mail-fx0-f44.google.com [209.85.161.44]) by mx1.freebsd.org (Postfix) with ESMTP id 29A818FC08; Mon, 25 Jul 2011 07:54:37 +0000 (UTC) Received: by fxe6 with SMTP id 6so6457550fxe.17 for ; Mon, 25 Jul 2011 00:54:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=VTjHaTGPKYsZjZhj/RXQ393xHbJfJXQwuAR+0QLPt3Y=; b=uzJ+KgY3O8cVWk+fpW199sHNfSsaV0zXr+R67NHOJFbujXh/Jk94bxk10KCLe8xGwl 9VcU5DulRdq3zdvdMYomktjyqfQdCF938dUH6CuMMItXPXeaMplYsK71sW8d3H5SuM5l DgdJAtdxiesSLl4+kCsu/Pfzg0WKIu+mib2lo= Received: by 10.204.17.19 with SMTP id q19mr1204243bka.107.1311580476966; Mon, 25 Jul 2011 00:54:36 -0700 (PDT) Received: from localhost (lan-78-157-92-5.vln.skynet.lt [78.157.92.5]) by mx.google.com with ESMTPS id q1sm1183401faa.3.2011.07.25.00.54.34 (version=SSLv3 cipher=OTHER); Mon, 25 Jul 2011 00:54:35 -0700 (PDT) Date: Mon, 25 Jul 2011 10:53:24 +0300 From: Gleb Kurtsou To: soc-status@freebsd.org Message-ID: <20110725075324.GA8618@tops> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: ino64 status report 9 X-BeenThere: soc-status@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Summer of Code Status Reports and Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jul 2011 07:54:38 -0000 ino64 project aims at extending ino_t to 64 bits and nlink_t to 32 bits integers providing compatibility shims for both kernel and libc. MNAMELEN was increased to 1024. I've added compatibility shims for statfs* syscalls. struct statfs is now too big to be placed on stack, it's malloc'ed now. I didn't changed MFSNAMELEN to 32 bits as it was initially planned because it would require changes to several sysctls, but adding support for sysctls backward compatibility is more complicated.