Received: with ECARTIS (v1.0.0; list xfs); Fri, 18 Jan 2008 13:23:16 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.0-r574664 (2007-09-11) on oss.sgi.com X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_43 autolearn=no version=3.3.0-r574664 Received: from cuda.sgi.com (cuda2.sgi.com [192.48.168.29]) by oss.sgi.com (8.12.11.20060308/8.12.11/SuSE Linux 0.7) with ESMTP id m0ILNC9S025858 for ; Fri, 18 Jan 2008 13:23:13 -0800 X-ASG-Debug-ID: 1200691410-2c5000ca0000-NocioJ X-Barracuda-URL: http://cuda.sgi.com:80/cgi-bin/mark.cgi Received: from sandeen.net (localhost [127.0.0.1]) by cuda.sgi.com (Spam Firewall) with ESMTP id 5E15D5376AA for ; Fri, 18 Jan 2008 13:23:30 -0800 (PST) Received: from sandeen.net (sandeen.net [209.173.210.139]) by cuda.sgi.com with ESMTP id XJ9DjuHwsfc9J9Qr for ; Fri, 18 Jan 2008 13:23:30 -0800 (PST) Received: from liberator.sandeen.net (liberator.sandeen.net [10.0.0.4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by sandeen.net (Postfix) with ESMTP id 73F3918D92255; Fri, 18 Jan 2008 15:23:28 -0600 (CST) Message-ID: <479118CF.1020302@sandeen.net> Date: Fri, 18 Jan 2008 15:23:27 -0600 From: Eric Sandeen User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: Barry Naujok CC: "xfs@oss.sgi.com" , xfs-dev X-ASG-Orig-Subj: Re: [REVIEW 2/2] Case insensitive support for XFS - user-space Subject: Re: [REVIEW 2/2] Case insensitive support for XFS - user-space References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Barracuda-Connect: sandeen.net[209.173.210.139] X-Barracuda-Start-Time: 1200691411 X-Barracuda-Bayes: INNOCENT GLOBAL 0.0000 1.0000 -2.0210 X-Barracuda-Virus-Scanned: by cuda.sgi.com at sgi.com X-Barracuda-Spam-Score: -0.52 X-Barracuda-Spam-Status: No, SCORE=-0.52 using per-user scores of TAG_LEVEL=2.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=3.0 tests=BSF_RULE_7580D, BSF_RULE_7580G X-Barracuda-Spam-Report: Code version 3.1, rules version 3.1.39825 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------------------------- 0.75 BSF_RULE_7580D BODY: Custom Rule 7580D 0.75 BSF_RULE_7580G BODY: Custom Rule 7580G X-Virus-Scanned: ClamAV 0.91.2/5495/Fri Jan 18 09:03:36 2008 on oss.sgi.com X-Virus-Status: Clean X-archive-position: 14188 X-ecartis-version: Ecartis v1.0.0 Sender: xfs-bounce@oss.sgi.com Errors-to: xfs-bounce@oss.sgi.com X-original-sender: sandeen@sandeen.net Precedence: bulk X-list: xfs Barry Naujok wrote: > This patch relies on the dinode.c refactoring patch posted recently. > I have attached the latest version (with fixes pointed out by Chandan). So, new mkfs.xfs -h output says: /* naming */ [-n log=n|size=num,version=n,utf8=none|default|turkic] so I tried: mkfs.xfs -dfile,name=fsfile,size=500m -nutf8=none and got: Illegal value none for -n utf8 option (are there man page updates lurking somewhere? Pls also update Documentation/filesystems/xfs.txt in the kernel) .... Also, if I specify -nutf8=default on a 500m fs: # mkfs.xfs -dfile,name=fsfile,size=500m -nutf8=default meta-data=fsfile isize=256 agcount=4, agsize=32000 blks = sectsz=512 attr=2 data = bsize=4096 blocks=128000, imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 utf8=default log =internal log bsize=4096 blocks=1200, version=2 = sectsz=512 sunit=0 blks, lazy-count=0 realtime =none extsz=4096 blocks=0, rtextents=0 mkfs.xfs: cannot reserve space: No space left on device However this works: # mkfs.xfs -dfile,name=fsfile,size=500m as does this: # mkfs.xfs -dfile,name=fsfile,size=1000m -nutf8=default eh? :) -Eric