From: Tristan Ye <tristan.ye@oracle.com>
Date: Thu, 17 Dec 2009 10:42:16 +0000 (+0800)
Subject: Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?
X-Git-Tag: firefly_0821_release~9833^2~3529^2~3
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55f4946ed23cbf78efe9f818c4b55e890fe2beff;p=firefly-linux-kernel-4.4.55.git

Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?

Let userspace have a chance to get the extent info of a
directory just like extN did.

Signed-off-by: Tristan Ye <tristan.ye@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---

diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c
index f010b22b1c44..0b9f35e09bf8 100644
--- a/fs/ocfs2/namei.c
+++ b/fs/ocfs2/namei.c
@@ -2326,4 +2326,5 @@ const struct inode_operations ocfs2_dir_iops = {
 	.getxattr	= generic_getxattr,
 	.listxattr	= ocfs2_listxattr,
 	.removexattr	= generic_removexattr,
+	.fiemap         = ocfs2_fiemap,
 };