From patchwork Sat Jan 7 08:33:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Darrick J. Wong" X-Patchwork-Id: 134784 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 ED9B3B6F74 for ; Sat, 7 Jan 2012 19:33:34 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751305Ab2AGIdb (ORCPT ); Sat, 7 Jan 2012 03:33:31 -0500 Received: from e33.co.us.ibm.com ([32.97.110.151]:46802 "EHLO e33.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751660Ab2AGId3 (ORCPT ); Sat, 7 Jan 2012 03:33:29 -0500 Received: from /spool/local by e33.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Sat, 7 Jan 2012 01:33:27 -0700 Received: from d03relay03.boulder.ibm.com (9.17.195.228) by e33.co.us.ibm.com (192.168.1.133) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Sat, 7 Jan 2012 01:33:20 -0700 Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [9.17.195.170]) by d03relay03.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q078XJqK144624 for ; Sat, 7 Jan 2012 01:33:19 -0700 Received: from d03av04.boulder.ibm.com (loopback [127.0.0.1]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q078XH0H014779 for ; Sat, 7 Jan 2012 01:33:18 -0700 Received: from elm3c44.beaverton.ibm.com (elm3c44.beaverton.ibm.com [9.47.69.44]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id q078XG82014755; Sat, 7 Jan 2012 01:33:17 -0700 Subject: [PATCH 03/51] debugfs: Optionally ignore bad checksums To: Andreas Dilger , Theodore Tso , "Darrick J. Wong" From: "Darrick J. Wong" Cc: Sunil Mushran , Amir Goldstein , Andi Kleen , Mingming Cao , Joel Becker , linux-ext4@vger.kernel.org, Coly Li Date: Sat, 07 Jan 2012 00:33:16 -0800 Message-ID: <20120107083316.25788.60080.stgit@elm3c44.beaverton.ibm.com> In-Reply-To: <20120107083256.25788.41238.stgit@elm3c44.beaverton.ibm.com> References: <20120107083256.25788.41238.stgit@elm3c44.beaverton.ibm.com> User-Agent: StGit/0.15 MIME-Version: 1.0 x-cbid: 12010708-2398-0000-0000-0000033A60AB Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org If someone is debugging a badly damaged filesystem, it might be useful to disable the checksum verifications that will otherwise prevent the filesystem from loading. Signed-off-by: Darrick J. Wong --- debugfs/debugfs.8.in | 7 ++++++- debugfs/debugfs.c | 7 +++++-- 2 files changed, 11 insertions(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/debugfs/debugfs.8.in b/debugfs/debugfs.8.in index 70c8326..310dae2 100644 --- a/debugfs/debugfs.8.in +++ b/debugfs/debugfs.8.in @@ -8,7 +8,7 @@ debugfs \- ext2/ext3/ext4 file system debugger .SH SYNOPSIS .B debugfs [ -.B \-DVwci +.B \-DVwcin ] [ .B \-b @@ -48,6 +48,11 @@ file system (e.g /dev/hdXX). Specifies that the file system should be opened in read-write mode. Without this option, the file system is opened in read-only mode. .TP +.I \-n +Disables metadata checksum verification. This should only be used if +you believe the metadata to be correct despite the complaints of +e2fsprogs. +.TP .I \-c Specifies that the file system should be opened in catastrophic mode, in which the inode and group bitmaps are not read initially. This can be diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index b7ff00d..419c76c 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -2300,9 +2300,9 @@ int main(int argc, char **argv) int catastrophic = 0; char *data_filename = 0; #ifdef READ_ONLY - const char *opt_string = "icR:f:b:s:Vd:D"; + const char *opt_string = "nicR:f:b:s:Vd:D"; #else - const char *opt_string = "iwcR:f:b:s:Vd:D"; + const char *opt_string = "niwcR:f:b:s:Vd:D"; #endif if (debug_prog_name == 0) @@ -2329,6 +2329,9 @@ int main(int argc, char **argv) case 'i': open_flags |= EXT2_FLAG_IMAGE_FILE; break; + case 'n': + open_flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS; + break; #ifndef READ_ONLY case 'w': open_flags |= EXT2_FLAG_RW;