diff options
Diffstat (limited to 'fs/xfs/xfs_aops.c')
-rw-r--r-- | fs/xfs/xfs_aops.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index 5f707e537171..3244c988d379 100644 --- a/fs/xfs/xfs_aops.c +++ b/fs/xfs/xfs_aops.c | |||
@@ -953,13 +953,13 @@ xfs_vm_writepage( | |||
953 | unsigned offset_into_page = offset & (PAGE_CACHE_SIZE - 1); | 953 | unsigned offset_into_page = offset & (PAGE_CACHE_SIZE - 1); |
954 | 954 | ||
955 | /* | 955 | /* |
956 | * Just skip the page if it is fully outside i_size, e.g. due | 956 | * Skip the page if it is fully outside i_size, e.g. due to a |
957 | * to a truncate operation that is in progress. | 957 | * truncate operation that is in progress. We must redirty the |
958 | * page so that reclaim stops reclaiming it. Otherwise | ||
959 | * xfs_vm_releasepage() is called on it and gets confused. | ||
958 | */ | 960 | */ |
959 | if (page->index >= end_index + 1 || offset_into_page == 0) { | 961 | if (page->index >= end_index + 1 || offset_into_page == 0) |
960 | unlock_page(page); | 962 | goto redirty; |
961 | return 0; | ||
962 | } | ||
963 | 963 | ||
964 | /* | 964 | /* |
965 | * The page straddles i_size. It must be zeroed out on each | 965 | * The page straddles i_size. It must be zeroed out on each |