diff options
Diffstat (limited to 'fs/xfs/xfs_vnodeops.c')
-rw-r--r-- | fs/xfs/xfs_vnodeops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index a5cd2dc4c80a..7d3c4a7aa2dc 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c | |||
@@ -3554,11 +3554,11 @@ xfs_inode_flush( | |||
3554 | if (iip && iip->ili_last_lsn) { | 3554 | if (iip && iip->ili_last_lsn) { |
3555 | xlog_t *log = mp->m_log; | 3555 | xlog_t *log = mp->m_log; |
3556 | xfs_lsn_t sync_lsn; | 3556 | xfs_lsn_t sync_lsn; |
3557 | int s, log_flags = XFS_LOG_FORCE; | 3557 | int log_flags = XFS_LOG_FORCE; |
3558 | 3558 | ||
3559 | s = GRANT_LOCK(log); | 3559 | spin_lock(&log->l_grant_lock); |
3560 | sync_lsn = log->l_last_sync_lsn; | 3560 | sync_lsn = log->l_last_sync_lsn; |
3561 | GRANT_UNLOCK(log, s); | 3561 | spin_unlock(&log->l_grant_lock); |
3562 | 3562 | ||
3563 | if ((XFS_LSN_CMP(iip->ili_last_lsn, sync_lsn) > 0)) { | 3563 | if ((XFS_LSN_CMP(iip->ili_last_lsn, sync_lsn) > 0)) { |
3564 | if (flags & FLUSH_SYNC) | 3564 | if (flags & FLUSH_SYNC) |