This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

cluster: STABLE3 - fsck.gfs2: Remove compute_height


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=e7ae325614aa4c8705de4ce77df0132eaa334cc0
Commit:        e7ae325614aa4c8705de4ce77df0132eaa334cc0
Parent:        94df30ca63e49afb1e8aeede65df8a3e5bcd0970
Author:        Andrew Price <andy@andrewprice.me.uk>
AuthorDate:    Wed Jun 10 17:09:25 2009 +0100
Committer:     Andrew Price <andy@andrewprice.me.uk>
CommitterDate: Wed Jun 10 17:24:52 2009 +0100

fsck.gfs2: Remove compute_height

Commit 9bc8ca removed the last two calls to this function so it can be
removed.

Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
---
 gfs2/fsck/util.c |   31 -------------------------------
 gfs2/fsck/util.h |    1 -
 2 files changed, 0 insertions(+), 32 deletions(-)

diff --git a/gfs2/fsck/util.c b/gfs2/fsck/util.c
index af88a7f..eac0e1b 100644
--- a/gfs2/fsck/util.c
+++ b/gfs2/fsck/util.c
@@ -11,37 +11,6 @@
 #include "fs_bits.h"
 #include "util.h"
 
-/**
- * compute_height
- * @sdp:
- * @sz:
- *
- */
-int compute_height(struct gfs2_sbd *sdp, uint64_t sz)
-{
-	unsigned int height;
-	uint64_t space, old_space;
-	unsigned int bsize = sdp->sd_sb.sb_bsize;
-	
-	if (sz <= (bsize - sizeof(struct gfs2_dinode)))
-		return 0;
-	
-	height = 1;
-	space = sdp->sd_diptrs * bsize;
-	
-	while (sz > space) {
-		old_space = space;
-		
-		height++;
-		space *= sdp->sd_inptrs;
-		
-		if (space / sdp->sd_inptrs != old_space ||
-			space % sdp->sd_inptrs != 0)
-			break;
-	}
-	return height;
-}
-
 /* Put out a warm, fuzzy message every second so the user     */
 /* doesn't think we hung.  (This may take a long time).       */
 void warm_fuzzy_stuff(uint64_t block)
diff --git a/gfs2/fsck/util.h b/gfs2/fsck/util.h
index 96d7c46..f84ab41 100644
--- a/gfs2/fsck/util.h
+++ b/gfs2/fsck/util.h
@@ -6,7 +6,6 @@
 #define fsck_lseek(fd, off) \
   ((lseek((fd), (off), SEEK_SET) == (off)) ? 0 : -1)
 
-int compute_height(struct gfs2_sbd *sdp, uint64_t sz);
 struct di_info *search_list(osi_list_t *list, uint64_t addr);
 void warm_fuzzy_stuff(uint64_t block);
 const char *block_type_string(struct gfs2_block_query *q);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]