diff options
author | Baokun Li <libaokun1@huawei.com> | 2021-06-08 11:12:44 +0800 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2021-06-28 14:13:38 +0200 |
commit | 38a618dbf47f837f11df01052977dcaf31c5c2a8 (patch) | |
tree | c3c50bde5ce33ac16d1846872cbace1e759479fc /fs/gfs2 | |
parent | 0f1616f6df294fe460432630850c0e0a8c30a192 (diff) |
gfs2: Use list_move_tail instead of list_del/list_add_tail
Using list_move_tail() instead of list_del() + list_add_tail().
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Baokun Li <libaokun1@huawei.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/glock.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index d9cb261f55b0..1f3902ecdded 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -212,8 +212,7 @@ void gfs2_glock_add_to_lru(struct gfs2_glock *gl) spin_lock(&lru_lock); - list_del(&gl->gl_lru); - list_add_tail(&gl->gl_lru, &lru_list); + list_move_tail(&gl->gl_lru, &lru_list); if (!test_bit(GLF_LRU, &gl->gl_flags)) { set_bit(GLF_LRU, &gl->gl_flags); |