diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2024-04-11 09:23:15 +0200 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2024-05-28 16:59:53 +0200 |
commit | 932a9052dc731d99865d478043e84b52937b8d54 (patch) | |
tree | 5693211986e33483db95cc61dcd7f08b115152ba /fs/gfs2 | |
parent | gfs2: Remove unnecessary function prototype (diff) | |
download | linux-932a9052dc731d99865d478043e84b52937b8d54.tar.xz linux-932a9052dc731d99865d478043e84b52937b8d54.zip |
gfs2: Remove useless return statement in run_queue
The return statement at the end of run_queue() is useless.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-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 873d76670238..d1fb0b2b5649 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -909,7 +909,6 @@ out_sched: out_unlock: clear_bit(GLF_LOCK, &gl->gl_flags); smp_mb__after_atomic(); - return; } /** |