diff options
author | Su Hui | 2023-11-02 09:51:42 +0800 |
---|---|---|
committer | Andreas Gruenbacher | 2023-11-06 01:51:26 +0100 |
commit | bb25b97562e52b2b5808b348db32568b1f5394b5 (patch) | |
tree | a03d2656bb0717e73b700f5eda26b87bd5eed8e5 /fs | |
parent | bdcb8aa434c6d36b5c215d02a9ef07551be25a37 (diff) |
gfs2: remove dead code in add_to_queue
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 <suhui@nfschina.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/glock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 4a280be229a6..b290f8d172d7 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -1524,7 +1524,6 @@ fail: 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); |