projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99b8520
)
gfs2: Remove useless return statement in run_queue
author
Andreas Gruenbacher
<agruenba@redhat.com>
Thu, 11 Apr 2024 07:23:15 +0000
(09:23 +0200)
committer
Andreas Gruenbacher
<agruenba@redhat.com>
Tue, 28 May 2024 14:59:53 +0000
(16:59 +0200)
The return statement at the end of run_queue() is useless.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/glock.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/gfs2/glock.c
b/fs/gfs2/glock.c
index 873d7667023846ea674643df92d9d9fdca8dfe66..d1fb0b2b56497a5d87519772eca531a7041e77d9 100644
(file)
--- 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;
}
/**