From patchwork Wed Jul 20 18:40:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aditya Kali X-Patchwork-Id: 105782 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 7490BB6F62 for ; Thu, 21 Jul 2011 04:41:11 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752619Ab1GTSlH (ORCPT ); Wed, 20 Jul 2011 14:41:07 -0400 Received: from smtp-out.google.com ([216.239.44.51]:10148 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752338Ab1GTSlG (ORCPT ); Wed, 20 Jul 2011 14:41:06 -0400 Received: from hpaq2.eem.corp.google.com (hpaq2.eem.corp.google.com [172.25.149.2]) by smtp-out.google.com with ESMTP id p6KIf6KO030057 for ; Wed, 20 Jul 2011 11:41:06 -0700 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=google.com; s=beta; t=1311187266; bh=VVL42OAuFx+gyX8JtdLhYV67xic=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=uJICgIZoP780IOZ78IJ7IwvyWGq11NuoHzeh2xHy3KNZwu0ytIwtBKrdMhe5mbyRF nauANFM/gchrdFz0/PxRw== DomainKey-Signature: a=rsa-sha1; s=beta; d=google.com; c=nofws; q=dns; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=i8pRLKn3uQmZzb2Gfa66f4ZUv+cxoUtUO5VO1UAwTUBry4DFgFhduFwpiahgbHuMM LnMPPLrnYrzysPbFga1lQ== Received: from adityakali.mtv.corp.google.com (adityakali.mtv.corp.google.com [172.18.96.56]) by hpaq2.eem.corp.google.com with ESMTP id p6KIf4Vk006696; Wed, 20 Jul 2011 11:41:04 -0700 Received: by adityakali.mtv.corp.google.com (Postfix, from userid 22404) id C477B1DE65B; Wed, 20 Jul 2011 11:41:03 -0700 (PDT) From: Aditya Kali To: linux-ext4@vger.kernel.org Cc: Aditya Kali Subject: [PATCH 2/5] e2fsprogs: Make quota as a supported feature Date: Wed, 20 Jul 2011 11:40:03 -0700 Message-Id: <1311187206-30553-3-git-send-email-adityakali@google.com> X-Mailer: git-send-email 1.7.3.1 In-Reply-To: <1311187206-30553-1-git-send-email-adityakali@google.com> References: <1311187206-30553-1-git-send-email-adityakali@google.com> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org Make EXT4_FEATURE_RO_COMPAT_QUOTA part of the supported features by e2fsprogs. Signed-off-by: Aditya Kali --- lib/ext2fs/ext2fs.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index dc83fb0..9d68cbe 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -564,7 +564,8 @@ typedef struct ext2_icount *ext2_icount_t; EXT4_FEATURE_RO_COMPAT_DIR_NLINK|\ EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|\ EXT4_FEATURE_RO_COMPAT_GDT_CSUM|\ - EXT4_FEATURE_RO_COMPAT_BIGALLOC) + EXT4_FEATURE_RO_COMPAT_BIGALLOC|\ + EXT4_FEATURE_RO_COMPAT_QUOTA) /* * These features are only allowed if EXT2_FLAG_SOFTSUPP_FEATURES is passed