Linux Btrfs filesystem development
 help / color / mirror / Atom feed
* [PATCH] btrfs: Remove unused function btrfs_account_dev_extents_size()
@ 2018-07-09  6:52 Qu Wenruo
  2018-07-09  7:01 ` Nikolay Borisov
  2018-07-10 10:30 ` David Sterba
  0 siblings, 2 replies; 3+ messages in thread
From: Qu Wenruo @ 2018-07-09  6:52 UTC (permalink / raw)
  To: linux-btrfs

This function is never used by any one in kernel, just remove it.

Signed-off-by: Qu Wenruo <wqu@suse.com>
---
 fs/btrfs/volumes.c | 85 ----------------------------------------------
 fs/btrfs/volumes.h |  2 --
 2 files changed, 87 deletions(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index b33bf29130b6..e6a8e4aabc66 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1259,91 +1259,6 @@ int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
 	return ret;
 }
 
-/* helper to account the used device space in the range */
-int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
-				   u64 end, u64 *length)
-{
-	struct btrfs_key key;
-	struct btrfs_root *root = device->fs_info->dev_root;
-	struct btrfs_dev_extent *dev_extent;
-	struct btrfs_path *path;
-	u64 extent_end;
-	int ret;
-	int slot;
-	struct extent_buffer *l;
-
-	*length = 0;
-
-	if (start >= device->total_bytes ||
-		test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
-		return 0;
-
-	path = btrfs_alloc_path();
-	if (!path)
-		return -ENOMEM;
-	path->reada = READA_FORWARD;
-
-	key.objectid = device->devid;
-	key.offset = start;
-	key.type = BTRFS_DEV_EXTENT_KEY;
-
-	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
-	if (ret < 0)
-		goto out;
-	if (ret > 0) {
-		ret = btrfs_previous_item(root, path, key.objectid, key.type);
-		if (ret < 0)
-			goto out;
-	}
-
-	while (1) {
-		l = path->nodes[0];
-		slot = path->slots[0];
-		if (slot >= btrfs_header_nritems(l)) {
-			ret = btrfs_next_leaf(root, path);
-			if (ret == 0)
-				continue;
-			if (ret < 0)
-				goto out;
-
-			break;
-		}
-		btrfs_item_key_to_cpu(l, &key, slot);
-
-		if (key.objectid < device->devid)
-			goto next;
-
-		if (key.objectid > device->devid)
-			break;
-
-		if (key.type != BTRFS_DEV_EXTENT_KEY)
-			goto next;
-
-		dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
-		extent_end = key.offset + btrfs_dev_extent_length(l,
-								  dev_extent);
-		if (key.offset <= start && extent_end > end) {
-			*length = end - start + 1;
-			break;
-		} else if (key.offset <= start && extent_end > start)
-			*length += extent_end - start;
-		else if (key.offset > start && extent_end <= end)
-			*length += extent_end - key.offset;
-		else if (key.offset > start && key.offset <= end) {
-			*length += end - key.offset + 1;
-			break;
-		} else if (key.offset > end)
-			break;
-
-next:
-		path->slots[0]++;
-	}
-	ret = 0;
-out:
-	btrfs_free_path(path);
-	return ret;
-}
-
 static int contains_pending_extent(struct btrfs_transaction *transaction,
 				   struct btrfs_device *device,
 				   u64 *start, u64 len)
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h
index 77e6004b6cb9..6d4f38ad9f5c 100644
--- a/fs/btrfs/volumes.h
+++ b/fs/btrfs/volumes.h
@@ -384,8 +384,6 @@ static inline enum btrfs_map_op btrfs_op(struct bio *bio)
 	}
 }
 
-int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
-				   u64 end, u64 *length);
 void btrfs_get_bbio(struct btrfs_bio *bbio);
 void btrfs_put_bbio(struct btrfs_bio *bbio);
 int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
-- 
2.18.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] btrfs: Remove unused function btrfs_account_dev_extents_size()
  2018-07-09  6:52 [PATCH] btrfs: Remove unused function btrfs_account_dev_extents_size() Qu Wenruo
@ 2018-07-09  7:01 ` Nikolay Borisov
  2018-07-10 10:30 ` David Sterba
  1 sibling, 0 replies; 3+ messages in thread
From: Nikolay Borisov @ 2018-07-09  7:01 UTC (permalink / raw)
  To: Qu Wenruo, linux-btrfs



On  9.07.2018 09:52, Qu Wenruo wrote:
> This function is never used by any one in kernel, just remove it.
> 
> Signed-off-by: Qu Wenruo <wqu@suse.com>

Reviewed-by: Nikolay Borisov <nborisov@suse.com>

> ---
>  fs/btrfs/volumes.c | 85 ----------------------------------------------
>  fs/btrfs/volumes.h |  2 --
>  2 files changed, 87 deletions(-)
> 
> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
> index b33bf29130b6..e6a8e4aabc66 100644
> --- a/fs/btrfs/volumes.c
> +++ b/fs/btrfs/volumes.c
> @@ -1259,91 +1259,6 @@ int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
>  	return ret;
>  }
>  
> -/* helper to account the used device space in the range */
> -int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
> -				   u64 end, u64 *length)
> -{
> -	struct btrfs_key key;
> -	struct btrfs_root *root = device->fs_info->dev_root;
> -	struct btrfs_dev_extent *dev_extent;
> -	struct btrfs_path *path;
> -	u64 extent_end;
> -	int ret;
> -	int slot;
> -	struct extent_buffer *l;
> -
> -	*length = 0;
> -
> -	if (start >= device->total_bytes ||
> -		test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
> -		return 0;
> -
> -	path = btrfs_alloc_path();
> -	if (!path)
> -		return -ENOMEM;
> -	path->reada = READA_FORWARD;
> -
> -	key.objectid = device->devid;
> -	key.offset = start;
> -	key.type = BTRFS_DEV_EXTENT_KEY;
> -
> -	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
> -	if (ret < 0)
> -		goto out;
> -	if (ret > 0) {
> -		ret = btrfs_previous_item(root, path, key.objectid, key.type);
> -		if (ret < 0)
> -			goto out;
> -	}
> -
> -	while (1) {
> -		l = path->nodes[0];
> -		slot = path->slots[0];
> -		if (slot >= btrfs_header_nritems(l)) {
> -			ret = btrfs_next_leaf(root, path);
> -			if (ret == 0)
> -				continue;
> -			if (ret < 0)
> -				goto out;
> -
> -			break;
> -		}
> -		btrfs_item_key_to_cpu(l, &key, slot);
> -
> -		if (key.objectid < device->devid)
> -			goto next;
> -
> -		if (key.objectid > device->devid)
> -			break;
> -
> -		if (key.type != BTRFS_DEV_EXTENT_KEY)
> -			goto next;
> -
> -		dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
> -		extent_end = key.offset + btrfs_dev_extent_length(l,
> -								  dev_extent);
> -		if (key.offset <= start && extent_end > end) {
> -			*length = end - start + 1;
> -			break;
> -		} else if (key.offset <= start && extent_end > start)
> -			*length += extent_end - start;
> -		else if (key.offset > start && extent_end <= end)
> -			*length += extent_end - key.offset;
> -		else if (key.offset > start && key.offset <= end) {
> -			*length += end - key.offset + 1;
> -			break;
> -		} else if (key.offset > end)
> -			break;
> -
> -next:
> -		path->slots[0]++;
> -	}
> -	ret = 0;
> -out:
> -	btrfs_free_path(path);
> -	return ret;
> -}
> -
>  static int contains_pending_extent(struct btrfs_transaction *transaction,
>  				   struct btrfs_device *device,
>  				   u64 *start, u64 len)
> diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h
> index 77e6004b6cb9..6d4f38ad9f5c 100644
> --- a/fs/btrfs/volumes.h
> +++ b/fs/btrfs/volumes.h
> @@ -384,8 +384,6 @@ static inline enum btrfs_map_op btrfs_op(struct bio *bio)
>  	}
>  }
>  
> -int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
> -				   u64 end, u64 *length);
>  void btrfs_get_bbio(struct btrfs_bio *bbio);
>  void btrfs_put_bbio(struct btrfs_bio *bbio);
>  int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] btrfs: Remove unused function btrfs_account_dev_extents_size()
  2018-07-09  6:52 [PATCH] btrfs: Remove unused function btrfs_account_dev_extents_size() Qu Wenruo
  2018-07-09  7:01 ` Nikolay Borisov
@ 2018-07-10 10:30 ` David Sterba
  1 sibling, 0 replies; 3+ messages in thread
From: David Sterba @ 2018-07-10 10:30 UTC (permalink / raw)
  To: Qu Wenruo; +Cc: linux-btrfs

On Mon, Jul 09, 2018 at 02:52:54PM +0800, Qu Wenruo wrote:
> This function is never used by any one in kernel, just remove it.

It's good to note when and why the function got unused. In this case
it's after removal of alloc_start mount option in
0d0c71b317207082856f40dbe8a2bac813f49677 "btrfs: obsolete and remove
mount option alloc_start" . I'll update the changelog, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-10 10:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-09  6:52 [PATCH] btrfs: Remove unused function btrfs_account_dev_extents_size() Qu Wenruo
2018-07-09  7:01 ` Nikolay Borisov
2018-07-10 10:30 ` David Sterba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox