Use list_is_first() instead of open-coding it.
Signed-off-by: Andreas Gruenbacher <[email protected]>
---
fs/gfs2/glock.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index 842884524ca7..f7f296e8e506 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -545,7 +545,7 @@ __acquires(&gl->gl_lockref.lock)
* 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;
--
2.33.1