diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2020-12-19 03:11:51 +0100 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2021-01-19 21:17:49 +0100 |
commit | e7501bf88cd77ed3a1bc65c451600a847c80485b (patch) | |
tree | 0a6aa5e19c1b43a3859a73cc670c523753c043ee /fs/gfs2/log.h | |
parent | 625a8edd5e00e7c4c70a125a433ec7598d9f0c27 (diff) | |
download | linux-stable-e7501bf88cd77ed3a1bc65c451600a847c80485b.tar.gz linux-stable-e7501bf88cd77ed3a1bc65c451600a847c80485b.tar.bz2 linux-stable-e7501bf88cd77ed3a1bc65c451600a847c80485b.zip |
gfs2: Rename gfs2_{write => flush}_revokes
Function gfs2_write_revokes doesn't actually write any revokes; instead, it
adds revokes to the system transaction during a flush.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/log.h')
-rw-r--r-- | fs/gfs2/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/log.h b/fs/gfs2/log.h index 79f97290146e..a9cdbc990edf 100644 --- a/fs/gfs2/log.h +++ b/fs/gfs2/log.h @@ -78,6 +78,6 @@ extern void log_flush_wait(struct gfs2_sbd *sdp); extern int gfs2_logd(void *data); extern void gfs2_add_revoke(struct gfs2_sbd *sdp, struct gfs2_bufdata *bd); extern void gfs2_glock_remove_revoke(struct gfs2_glock *gl); -extern void gfs2_write_revokes(struct gfs2_sbd *sdp); +extern void gfs2_flush_revokes(struct gfs2_sbd *sdp); #endif /* __LOG_DOT_H__ */ |