All of lore.kernel.org
 help / color / mirror / Atom feed
From: Qu Wenruo <quwenruo@cn.fujitsu.com>
To: Tsutomu Itoh <t-itoh@jp.fujitsu.com>, <linux-btrfs@vger.kernel.org>
Subject: Re: [PATCH] Btrfs: cleanup: remove unnecessary check before btrfs_free_path is called
Date: Wed, 19 Aug 2015 15:34:01 +0800	[thread overview]
Message-ID: <55D43169.3030008@cn.fujitsu.com> (raw)
In-Reply-To: <201508190555.AA00003@WIN-5MHF4RKU941.jp.fujitsu.com>



Tsutomu Itoh wrote on 2015/08/19 14:55 +0900:
> We need not check path before btrfs_free_path() is called because
> path is checked in btrfs_free_path().
>
> Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>

Reviewed-by: Qu Wenruo <quwenruo@cn.fujitsu.com>

BTW, did you check btrfs-progs for the such cleanup?

Thanks,
Qu

> ---
>   fs/btrfs/dev-replace.c | 3 +--
>   fs/btrfs/inode.c       | 3 +--
>   fs/btrfs/tree-defrag.c | 3 +--
>   3 files changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c
> index 564a7de..e54dd59 100644
> --- a/fs/btrfs/dev-replace.c
> +++ b/fs/btrfs/dev-replace.c
> @@ -183,8 +183,7 @@ no_valid_dev_replace_entry_found:
>   	}
>
>   out:
> -	if (path)
> -		btrfs_free_path(path);
> +	btrfs_free_path(path);
>   	return ret;
>   }
>
> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
> index e33dff3..21ba036 100644
> --- a/fs/btrfs/inode.c
> +++ b/fs/btrfs/inode.c
> @@ -6876,8 +6876,7 @@ out:
>
>   	trace_btrfs_get_extent(root, em);
>
> -	if (path)
> -		btrfs_free_path(path);
> +	btrfs_free_path(path);
>   	if (trans) {
>   		ret = btrfs_end_transaction(trans, root);
>   		if (!err)
> diff --git a/fs/btrfs/tree-defrag.c b/fs/btrfs/tree-defrag.c
> index a4b9c8b..f31db43 100644
> --- a/fs/btrfs/tree-defrag.c
> +++ b/fs/btrfs/tree-defrag.c
> @@ -115,8 +115,7 @@ int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
>   		ret = -EAGAIN;
>   	}
>   out:
> -	if (path)
> -		btrfs_free_path(path);
> +	btrfs_free_path(path);
>   	if (ret == -EAGAIN) {
>   		if (root->defrag_max.objectid > root->defrag_progress.objectid)
>   			goto done;
>

  reply	other threads:[~2015-08-19  7:34 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-19  5:55 [PATCH] Btrfs: cleanup: remove unnecessary check before btrfs_free_path is called Tsutomu Itoh
2015-08-19  7:34 ` Qu Wenruo [this message]
2015-08-19  8:20   ` Tsutomu Itoh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55D43169.3030008@cn.fujitsu.com \
    --to=quwenruo@cn.fujitsu.com \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=t-itoh@jp.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.