aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_aops.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_aops.c')
-rw-r--r--fs/xfs/xfs_aops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
index 98016b39b8af..75df77d09f75 100644
--- a/fs/xfs/xfs_aops.c
+++ b/fs/xfs/xfs_aops.c
@@ -659,10 +659,10 @@ xfs_check_page_type(
659 if (type == XFS_IO_UNWRITTEN) 659 if (type == XFS_IO_UNWRITTEN)
660 return true; 660 return true;
661 } else if (buffer_delay(bh)) { 661 } else if (buffer_delay(bh)) {
662 if (type == XFS_IO_DELALLOC); 662 if (type == XFS_IO_DELALLOC)
663 return true; 663 return true;
664 } else if (buffer_dirty(bh) && buffer_mapped(bh)) { 664 } else if (buffer_dirty(bh) && buffer_mapped(bh)) {
665 if (type == XFS_IO_OVERWRITE); 665 if (type == XFS_IO_OVERWRITE)
666 return true; 666 return true;
667 } 667 }
668 668