diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2022-01-13 02:54:55 +0100 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2022-02-15 15:01:40 +0100 |
commit | 5a27a43efd1d5cd55dd5988cac596bdea7294d73 (patch) | |
tree | 86ecc87e43c2a3dbc8d4e7c474b44772fb98a68b | |
parent | 29464ee36bcaaee2691249f49b9592b8d5c97ece (diff) |
gfs2: Make use of list_is_first
Use list_is_first() instead of open-coding it.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
-rw-r--r-- | fs/gfs2/glock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index d368d9a2e8f0..a12bb3e8cb9c 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -542,7 +542,7 @@ restart: * some reason. If this holder is the head of the list, it * means we have a blocked holder at the head, so return 1. */ - if (gh->gh_list.prev == &gl->gl_holders) + if (list_is_first(&gh->gh_list, &gl->gl_holders)) return 1; do_error(gl, 0); break; |