lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1343735309-30579-21-git-send-email-wenqing.lz@taobao.com> Date: Tue, 31 Jul 2012 19:48:13 +0800 From: Zheng Liu <gnehzuil.liu@...il.com> To: linux-ext4@...r.kernel.org Cc: Zheng Liu <wenqing.lz@...bao.com> Subject: [PATCH 20/36 v4] debugfs: make pwd cmd support inline data From: Zheng Liu <wenqing.lz@...bao.com> Signed-off-by: Zheng Liu <wenqing.lz@...bao.com> --- lib/ext2fs/get_pathname.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/lib/ext2fs/get_pathname.c b/lib/ext2fs/get_pathname.c index 52aea62..f92f17d 100644 --- a/lib/ext2fs/get_pathname.c +++ b/lib/ext2fs/get_pathname.c @@ -98,7 +98,12 @@ static errcode_t ext2fs_get_pathname_int(ext2_filsys fs, ext2_ino_t dir, gp.name = 0; gp.errcode = 0; - retval = ext2fs_dir_iterate(fs, dir, 0, buf, get_pathname_proc, &gp); + if (ext2fs_has_inline_data(fs, dir)) + retval = ext2fs_inline_data_iterate(fs, dir, 0, buf, + get_pathname_proc, &gp); + else + retval = ext2fs_dir_iterate(fs, dir, 0, buf, + get_pathname_proc, &gp); if (retval == EXT2_ET_NO_DIRECTORY) { char tmp[32]; -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists