diff options
author | Christoph Hellwig <hch@lst.de> | 2020-03-20 08:49:19 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-03-23 08:27:58 -0700 |
commit | f97a43e4366277f5b683a130af7f1d86ce7c162b (patch) | |
tree | 7b6c15cc74c00ce7accd310653d1495391b6c0f5 /fs/xfs/xfs_log.h | |
parent | 81e5b50a8fb5a2865ede48f6012a0bb9b9136cdc (diff) | |
download | linux-riscv-f97a43e4366277f5b683a130af7f1d86ce7c162b.tar.gz linux-riscv-f97a43e4366277f5b683a130af7f1d86ce7c162b.tar.bz2 linux-riscv-f97a43e4366277f5b683a130af7f1d86ce7c162b.zip |
xfs: simplify the xfs_log_release_iclog calling convention
The only caller of xfs_log_release_iclog doesn't care about the return
value, so remove it. Also don't bother passing the mount pointer,
given that we can trivially derive it from the iclog.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_log.h')
-rw-r--r-- | fs/xfs/xfs_log.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_log.h b/fs/xfs/xfs_log.h index 84e06805160f..b38602216c5a 100644 --- a/fs/xfs/xfs_log.h +++ b/fs/xfs/xfs_log.h @@ -121,8 +121,7 @@ void xfs_log_mount_cancel(struct xfs_mount *); xfs_lsn_t xlog_assign_tail_lsn(struct xfs_mount *mp); xfs_lsn_t xlog_assign_tail_lsn_locked(struct xfs_mount *mp); void xfs_log_space_wake(struct xfs_mount *mp); -int xfs_log_release_iclog(struct xfs_mount *mp, - struct xlog_in_core *iclog); +void xfs_log_release_iclog(struct xlog_in_core *iclog); int xfs_log_reserve(struct xfs_mount *mp, int length, int count, |