From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Sandeen Subject: [PATCH] libe2p: Add JFS_FEATURE_INCOMPAT_64BIT parsing Date: Thu, 24 May 2012 12:24:49 -0500 Message-ID: <4FBE6EE1.2000000@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit To: ext4 development Return-path: Received: from mx1.redhat.com ([209.132.183.28]:52249 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756718Ab2EXRYv (ORCPT ); Thu, 24 May 2012 13:24:51 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q4OHOoIT022251 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 24 May 2012 13:24:50 -0400 Received: from liberator.sandeen.net (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q4OHOnAC028432 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Thu, 24 May 2012 13:24:50 -0400 Sender: linux-ext4-owner@vger.kernel.org List-ID: Today, dumpe2fs for example will give this for a journal with JFS_FEATURE_INCOMPAT_64BIT: Journal features: FEATURE_I1 So fix this to show the more useful: Journal features: journal_64bit Signed-off-by: Eric Sandeen --- diff --git a/lib/e2p/feature.c b/lib/e2p/feature.c index db85365..9691263 100644 --- a/lib/e2p/feature.c +++ b/lib/e2p/feature.c @@ -104,6 +104,8 @@ static struct feature jrnl_feature_list[] = { { E2P_FEATURE_INCOMPAT, JFS_FEATURE_INCOMPAT_REVOKE, "journal_incompat_revoke" }, + { E2P_FEATURE_INCOMPAT, JFS_FEATURE_INCOMPAT_64BIT, + "journal_64bit" }, { E2P_FEATURE_INCOMPAT, JFS_FEATURE_INCOMPAT_ASYNC_COMMIT, "journal_async_commit" }, { 0, 0, 0 },