From: Zheng Liu Subject: [PATCH 10/32] debugfs: make chroot and cd cmd support inline data Date: Mon, 16 Apr 2012 19:39:45 +0800 Message-ID: <1334576407-4007-11-git-send-email-wenqing.lz@taobao.com> References: <1334576407-4007-1-git-send-email-wenqing.lz@taobao.com> Cc: Zheng Liu To: linux-ext4@vger.kernel.org Return-path: 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 S1753030Ab2DPLeM (ORCPT ); Mon, 16 Apr 2012 07:34:12 -0400 Received: by mail-pb0-f46.google.com with SMTP id un15so6233785pbc.19 for ; Mon, 16 Apr 2012 04:34:12 -0700 (PDT) In-Reply-To: <1334576407-4007-1-git-send-email-wenqing.lz@taobao.com> Sender: linux-ext4-owner@vger.kernel.org List-ID: From: Zheng Liu Both chroot and cd command call ext2fs_lookup. So we can let it supoort inline data simultaneously. Signed-off-by: Zheng Liu --- lib/ext2fs/lookup.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/lib/ext2fs/lookup.c b/lib/ext2fs/lookup.c index 0e66e71..9835082 100644 --- a/lib/ext2fs/lookup.c +++ b/lib/ext2fs/lookup.c @@ -60,7 +60,11 @@ errcode_t ext2fs_lookup(ext2_filsys fs, ext2_ino_t dir, const char *name, ls.inode = inode; ls.found = 0; - retval = ext2fs_dir_iterate(fs, dir, 0, buf, lookup_proc, &ls); + if (ext2fs_has_inline_data(fs, dir)) + retval = ext2fs_inline_data_iterate(fs, dir, 0, buf, + lookup_proc, &ls); + else + retval = ext2fs_dir_iterate(fs, dir, 0, buf, lookup_proc, &ls); if (retval) return retval; -- 1.7.4.1