From patchwork Tue Oct 4 04:26:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 117535 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id C4798B6F75 for ; Tue, 4 Oct 2011 15:27:06 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751080Ab1JDE1D (ORCPT ); Tue, 4 Oct 2011 00:27:03 -0400 Received: from li9-11.members.linode.com ([67.18.176.11]:47291 "EHLO test.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750966Ab1JDE1D (ORCPT ); Tue, 4 Oct 2011 00:27:03 -0400 Received: from root (helo=tytso-glaptop.cam.corp.google.com) by test.thunk.org with local-esmtp (Exim 4.69) (envelope-from ) id 1RAwar-0006NC-Bu; Tue, 04 Oct 2011 04:27:01 +0000 Received: from tytso by tytso-glaptop.cam.corp.google.com with local (Exim 4.71) (envelope-from ) id 1RAwaq-00085v-Df; Tue, 04 Oct 2011 00:27:00 -0400 From: Theodore Ts'o To: Ext4 Developers List Cc: sandeen@sandeen.net, Theodore Ts'o Subject: [PATCH 1/2] Add "big" and "huge" types to mke2fs.conf Date: Tue, 4 Oct 2011 00:26:59 -0400 Message-Id: <1317702420-31085-1-git-send-email-tytso@mit.edu> X-Mailer: git-send-email 1.7.4.1.22.gec8e1.dirty In-Reply-To: <20111004040033.GM6684@thunk.org> References: <20111004040033.GM6684@thunk.org> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: tytso@thunk.org X-SA-Exim-Scanned: No (on test.thunk.org); SAEximRunCond expanded to false Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org mke2fs attempts to use the "big" and "huge" types, and now that mke2fs will complain if there are file system types which are undefined, let's add definitions for them. Thanks to Richard Jones for reporting this problem. Signed-off-by: "Theodore Ts'o" --- misc/mke2fs-hurd.conf | 6 ++++++ misc/mke2fs.conf | 6 ++++++ 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/misc/mke2fs-hurd.conf b/misc/mke2fs-hurd.conf index 52ed7e5..4f0527d 100644 --- a/misc/mke2fs-hurd.conf +++ b/misc/mke2fs-hurd.conf @@ -21,6 +21,12 @@ floppy = { inode_ratio = 8192 } + big = { + inode_ratio = 32768 + } + huge = { + inode_ratio = 65536 + } news = { inode_ratio = 4096 } diff --git a/misc/mke2fs.conf b/misc/mke2fs.conf index 775e046..0871f77 100644 --- a/misc/mke2fs.conf +++ b/misc/mke2fs.conf @@ -30,6 +30,12 @@ inode_size = 128 inode_ratio = 8192 } + big = { + inode_ratio = 32768 + } + huge = { + inode_ratio = 65536 + } news = { inode_ratio = 4096 }