From: Qu Wenruo Date: Fri, 19 Dec 2014 06:13:11 +0000 (+0800) Subject: btrfs-progs: Remove a unused function offset_to_bitmap() X-Git-Tag: upstream/4.16.1~2508 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97bf00f5955e9431b1d07c2b3040b20d33b9b33b;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: Remove a unused function offset_to_bitmap() Fix the following clang warning: free-space-cache.c:464:19: warning: unused function 'offset_to_bitmap' [-Wunused-function] static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl, ^ 1 warning generated. Signed-off-by: Qu Wenruo Reviewed-by: Satoru Takeuchi Signed-off-by: David Sterba --- diff --git a/free-space-cache.c b/free-space-cache.c index 220449e..99ad420 100644 --- a/free-space-cache.c +++ b/free-space-cache.c @@ -461,22 +461,6 @@ static inline unsigned long bytes_to_bits(u64 bytes, u32 unit) return (unsigned long)(bytes / unit); } -static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl, - u64 offset) -{ - u64 bitmap_start; - u64 bytes_per_bitmap; - u32 sectorsize = ctl->sectorsize; - - bytes_per_bitmap = BITS_PER_BITMAP(sectorsize) * ctl->unit; - bitmap_start = offset - ctl->start; - bitmap_start = bitmap_start / bytes_per_bitmap; - bitmap_start *= bytes_per_bitmap; - bitmap_start += ctl->start; - - return bitmap_start; -} - static int tree_insert_offset(struct rb_root *root, u64 offset, struct rb_node *node, int bitmap) {