gfs2-utils: master - libgfs2: metapointer function is only used internally

Steven Whitehouse swhiteho@fedoraproject.org
Mon Jan 26 15:08:00 GMT 2009


Gitweb:        http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=8709dcd048da9572536751ae2f4ba6f41e5ebd4b
Commit:        8709dcd048da9572536751ae2f4ba6f41e5ebd4b
Parent:        77edaa48803d1a33becea7cf1e5a3e674d01cb99
Author:        Steven Whitehouse <swhiteho@redhat.com>
AuthorDate:    Mon Jan 26 14:05:34 2009 +0000
Committer:     Steven Whitehouse <swhiteho@redhat.com>
CommitterDate: Mon Jan 26 14:05:34 2009 +0000

libgfs2: metapointer function is only used internally

So we don't need it in libgfs2.h

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
---
 gfs2/libgfs2/fs_ops.c  |   10 ++++++++++
 gfs2/libgfs2/libgfs2.h |   10 ----------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/gfs2/libgfs2/fs_ops.c b/gfs2/libgfs2/fs_ops.c
index 29af6d4..e7aef67 100644
--- a/gfs2/libgfs2/fs_ops.c
+++ b/gfs2/libgfs2/fs_ops.c
@@ -12,6 +12,16 @@
 #include <linux/types.h>
 #include "libgfs2.h"
 
+static __inline__ uint64_t *metapointer(struct gfs2_buffer_head *bh,
+					unsigned int height,
+					struct metapath *mp)
+{
+	unsigned int head_size = (height > 0) ?
+		sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode);
+
+	return ((uint64_t *)(bh->b_data + head_size)) + mp->mp_list[height];
+}
+
 /* Detect directory is a stuffed inode */
 static int inode_is_stuffed(struct gfs2_inode *ip)
 {
diff --git a/gfs2/libgfs2/libgfs2.h b/gfs2/libgfs2/libgfs2.h
index 9f48b93..1f397d7 100644
--- a/gfs2/libgfs2/libgfs2.h
+++ b/gfs2/libgfs2/libgfs2.h
@@ -449,16 +449,6 @@ extern void build_rgrps(struct gfs2_sbd *sdp, int write);
 #define IS_LEAF     (1)
 #define IS_DINODE   (2)
 
-static __inline__ uint64_t *
-metapointer(struct gfs2_buffer_head *bh, unsigned int height,
-	    struct metapath *mp)
-{
-	unsigned int head_size = (height > 0) ?
-		sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode);
-
-	return ((uint64_t *)(bh->b_data + head_size)) + mp->mp_list[height];
-}
-
 extern struct metapath *find_metapath(struct gfs2_inode *ip, uint64_t block);
 extern struct gfs2_inode *inode_get(struct gfs2_sbd *sdp,
 				    struct gfs2_buffer_head *bh);



More information about the Cluster-cvs mailing list