From owner-soc-status@FreeBSD.ORG Sat Jul 24 05:32:13 2010 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 F15331065670 for ; Sat, 24 Jul 2010 05:32:13 +0000 (UTC) (envelope-from gnehzuil@gmail.com) Received: from mail-pv0-f182.google.com (mail-pv0-f182.google.com [74.125.83.182]) by mx1.freebsd.org (Postfix) with ESMTP id C69958FC0A for ; Sat, 24 Jul 2010 05:32:13 +0000 (UTC) Received: by pvh1 with SMTP id 1so4392443pvh.13 for ; Fri, 23 Jul 2010 22:32:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=KSkZnw1lRCwapdJcyY2AxpOtInl0MmGjoMJgYj5fivE=; b=EY6/k0PTb9cD78XCq5PsY5VscBh8PvSX3m0uFESYrbUIwXe/xP6SDU8DaFWE8R1Obp DbjKiTKNiWN2bv9PiWomNJ0XOqrLf8G6WcaLPrtPZpfqF2JNK/hqSzQeJaG24rTiWShQ G47t+KblnLSHtXgA2XjA5022kY37y7tCx8ICc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=aHQMnuY4D2IgpCxt4doSkzGeVOTakFrLdsr4dNi5pWqYsnsLjXSWQAchp0khZhxgrJ jwv4aAOutf4xzfzMxq268etCGazAGxxMXkNaP5xtOdBFa80RceYo10TubTOfeaTHVh+U +pjPiVV1LMRig+83jUc0eVD2YI3VI6T52zoCE= Received: by 10.114.179.19 with SMTP id b19mr6765841waf.94.1279949533262; Fri, 23 Jul 2010 22:32:13 -0700 (PDT) Received: from [192.168.1.26] ([166.111.68.197]) by mx.google.com with ESMTPS id c24sm1785052wam.19.2010.07.23.22.32.11 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 23 Jul 2010 22:32:12 -0700 (PDT) Message-ID: <4C4A7AD3.4050900@gmail.com> Date: Sat, 24 Jul 2010 13:32:03 +0800 From: gnehzuil User-Agent: Thunderbird 2.0.0.24 (X11/20100317) MIME-Version: 1.0 To: soc-status@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [extfs] status report 8 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: Sat, 24 Jul 2010 05:32:14 -0000 Status: * Make ext2fs read ext4 extents in read-only mode. * Make ext2fs support DIR_NLINK feautre. * Add flex groups data structure and a function to initialize it. FLEX_BG feature doesn't required in read-only mode. * UNINIT_BG feature doesn't required in read-only mode. * Calculate extra_isize variable in ext2_mountfs() function. EXTRA_ISIZE feature doesn't required in read-only mode. Plan for next week: * Implement DIR_INDEX feature and make ext2fs can read hash directory index in read-only mode. This feature is the last one I need to implement the feature. * There is a bug in changing into a directory with DIR_NLINK feature and the number of directories is greater than 32000. When I change into a directory, it will get a panic. The panic occur in calling softdep_deallocate_dependencies() function. So I think this is an I/O error about buffer. lz