From patchwork Mon Apr 16 11:39:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zheng Liu X-Patchwork-Id: 152793 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 AC8E4B7020 for ; Mon, 16 Apr 2012 21:34:13 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753186Ab2DPLeL (ORCPT ); Mon, 16 Apr 2012 07:34:11 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:43674 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753030Ab2DPLeK (ORCPT ); Mon, 16 Apr 2012 07:34:10 -0400 Received: by mail-pb0-f46.google.com with SMTP id un15so6233785pbc.19 for ; Mon, 16 Apr 2012 04:34:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=BVn4OMij65Gk51pA9R+8m2KELwsG/eRgGEyGHdAbfvE=; b=ScbO5CEjSyN0TbFwOhmXSUjpSlba2EGT2LMoxPlHPie6DlZ4d5xA2meXgwwZwTA9bH 2gI7RnrHUGVg3V0y2pk4FO7fLowQyjuSQiCBPpx+QH7ZlIaKi/3u/MXW/b5f5IuKrAgQ nx3deFnFvuqxKSp3cvOgo9GFsDyhanJS5UlA1qWKtMdY2l+bsezsYSBDIKo2vHF1SaJn udDqJ9pJSHDlAeUjKe27EHuHBiBX+0WZKDN4Q09o+6zvnGdUwyhYXwQlhkwRBo4RaGyf 410MGinNS1nrmSfQEFppFTQ7iJ7+SSIfibEhqIs0ralbjlUZlIsb3vEVeFPMeNvg3uH6 k2fw== Received: by 10.68.200.225 with SMTP id jv1mr27138882pbc.120.1334576047685; Mon, 16 Apr 2012 04:34:07 -0700 (PDT) Received: from localhost.localdomain ([182.92.247.2]) by mx.google.com with ESMTPS id l6sm17474160pbp.33.2012.04.16.04.34.06 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 16 Apr 2012 04:34:07 -0700 (PDT) From: Zheng Liu To: linux-ext4@vger.kernel.org Cc: Zheng Liu Subject: [PATCH 09/32] debugfs: make ncheck cmd support inline data Date: Mon, 16 Apr 2012 19:39:44 +0800 Message-Id: <1334576407-4007-10-git-send-email-wenqing.lz@taobao.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1334576407-4007-1-git-send-email-wenqing.lz@taobao.com> References: <1334576407-4007-1-git-send-email-wenqing.lz@taobao.com> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Zheng Liu when inode has inline data, ext2fs_inline_data_iterate function is called to traverse dirs. Signed-off-by: Zheng Liu --- debugfs/ncheck.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debugfs/ncheck.c b/debugfs/ncheck.c index 58f3a50..6dda919 100644 --- a/debugfs/ncheck.c +++ b/debugfs/ncheck.c @@ -171,8 +171,12 @@ void do_ncheck(int argc, char **argv) iw.dir = ino; iw.get_pathname_failed = 0; - retval = ext2fs_dir_iterate(current_fs, ino, 0, 0, - ncheck_proc, &iw); + if (ext2fs_has_inline_data(current_fs, ino)) + retval = ext2fs_inline_data_iterate(current_fs, ino, 0, + 0, ncheck_proc, &iw); + else + retval = ext2fs_dir_iterate(current_fs, ino, 0, 0, + ncheck_proc, &iw); ext2fs_free_mem(&iw.parent); if (retval) { com_err("ncheck", retval,