Commit 78558fe8d8326b2395da33456cd9eec57ffc081a

Authored by Christoph Hellwig
Committed by Alex Elder
1 parent d4f7a5cbd5

xfs: writepage always has buffers

These days we always have buffers thanks to ->page_mkwrite.  And we
already have an assert a few lines above tripping in case that was
not true due to a bug.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>

Showing 1 changed file with 0 additions and 7 deletions Side-by-side Diff

fs/xfs/linux-2.6/xfs_aops.c
... ... @@ -1072,13 +1072,6 @@
1072 1072 if ((current->flags & PF_FSTRANS) && (delalloc || unwritten))
1073 1073 goto out_fail;
1074 1074  
1075   - /*
1076   - * Delay hooking up buffer heads until we have
1077   - * made our go/no-go decision.
1078   - */
1079   - if (!page_has_buffers(page))
1080   - create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1081   -
1082 1075 /* Is this page beyond the end of the file? */
1083 1076 offset = i_size_read(inode);
1084 1077 end_index = offset >> PAGE_CACHE_SHIFT;