From: liubaolin <liubaolin12138@163.com>
To: Jiangshan Yi <yijiangshan@kylinos.cn>,
linkinjeon@kernel.org, hyc.lee@gmail.com
Cc: ntfs@lists.linux.dev, linux-kernel@vger.kernel.org, 13667453960@163.com
Subject: Re: [PATCH] ntfs: remove unreachable code in load_and_init_attrdef/upcase
Date: Tue, 8 Sep 2026 13:58:46 +0800 [thread overview]
Message-ID: <dbb85dc4-70fb-4f99-90ab-7028d59c869c@163.com> (raw)
In-Reply-To: <20260907101623.671477-1-yijiangshan@kylinos.cn>
在 2026/9/7 18:16, Jiangshan Yi 写道:
> Both load_and_init_attrdef() and load_and_init_upcase() open a system
> inode with ntfs_iget() and, on error, run:
>
> if (IS_ERR(ino)) {
> if (!IS_ERR(ino))
> iput(ino);
> goto failed;
> }
>
> The inner guard is the exact negation of the outer one, so
> iput(ino) is dead code. Drop the unreachable branch and collapse
> the error check to a single statement.
>
> No functional change.
>
> Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>
> ---
> fs/ntfs/super.c | 10 ++--------
> 1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c
> index 60d43339c590..1b916deb7acc 100644
> --- a/fs/ntfs/super.c
> +++ b/fs/ntfs/super.c
> @@ -1235,11 +1235,8 @@ static bool load_and_init_attrdef(struct ntfs_volume *vol)
> ntfs_debug("Entering.");
> /* Read attrdef table and setup vol->attrdef and vol->attrdef_size. */
> ino = ntfs_iget(sb, FILE_AttrDef);
> - if (IS_ERR(ino)) {
> - if (!IS_ERR(ino))
> - iput(ino);
> + if (IS_ERR(ino))
> goto failed;
> - }
> NInoSetSparseDisabled(NTFS_I(ino));
> /* FILE_AttrDef must hold at least one entry and fit inside 31 bits. */
> i_size = i_size_read(ino);
> @@ -1301,11 +1298,8 @@ static bool load_and_init_upcase(struct ntfs_volume *vol)
> ntfs_debug("Entering.");
> /* Read upcase table and setup vol->upcase and vol->upcase_len. */
> ino = ntfs_iget(sb, FILE_UpCase);
> - if (IS_ERR(ino)) {
> - if (!IS_ERR(ino))
> - iput(ino);
> + if (IS_ERR(ino))
> goto upcase_failed;
> - }
> /*
> * The upcase size must not be above 64k Unicode characters, must not
> * be zero and must be a multiple of sizeof(__le16).
Looks good to me.
Reviewed-by: Baolin Liu <liubaolin@kylinos.cn>
next prev parent reply other threads:[~2026-09-08 5:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-07 10:16 Jiangshan Yi
2026-09-08 5:58 ` liubaolin [this message]
2026-09-08 9:41 ` Namjae Jeon
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=dbb85dc4-70fb-4f99-90ab-7028d59c869c@163.com \
--to=liubaolin12138@163.com \
--cc=13667453960@163.com \
--cc=hyc.lee@gmail.com \
--cc=linkinjeon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=ntfs@lists.linux.dev \
--cc=yijiangshan@kylinos.cn \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®