2023-11-02 01:52:41

by Su Hui

[permalink] [raw]
Subject: [PATCH] gfs2: remove dead code in __acquires

clang static analyzer complains that value stored to 'gh' is never read.
The code of this line is useless after commit 0b93bac2271e
("gfs2: Remove LM_FLAG_PRIORITY flag"). Remove this code to save space.

Signed-off-by: Su Hui <[email protected]>
---
fs/gfs2/glock.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index 3772a5d9e85c..347f8a020c82 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -1524,7 +1524,6 @@ __acquires(&gl->gl_lockref.lock)
return;
}
list_add_tail(&gh->gh_list, insert_pt);
- gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list);
spin_unlock(&gl->gl_lockref.lock);
if (sdp->sd_lockstruct.ls_ops->lm_cancel)
sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
--
2.30.2


2023-11-02 11:52:00

by Andreas Gruenbacher

[permalink] [raw]
Subject: Re: [PATCH] gfs2: remove dead code in __acquires

On Thu, Nov 2, 2023 at 2:54 AM Su Hui <[email protected]> wrote:
>
> clang static analyzer complains that value stored to 'gh' is never read.
> The code of this line is useless after commit 0b93bac2271e
> ("gfs2: Remove LM_FLAG_PRIORITY flag"). Remove this code to save space.
>
> Signed-off-by: Su Hui <[email protected]>
> ---
> fs/gfs2/glock.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
> index 3772a5d9e85c..347f8a020c82 100644
> --- a/fs/gfs2/glock.c
> +++ b/fs/gfs2/glock.c
> @@ -1524,7 +1524,6 @@ __acquires(&gl->gl_lockref.lock)
> return;
> }
> list_add_tail(&gh->gh_list, insert_pt);
> - gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list);
> spin_unlock(&gl->gl_lockref.lock);
> if (sdp->sd_lockstruct.ls_ops->lm_cancel)
> sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
> --
> 2.30.2
>

Thanks, I'll add this.

(The subject "gfs2: remove dead code in __acquires" is misleading
because the function this is in is called add_to_queue(); __acquires
is just an annotation.)

Andreas