diff options
author | Matthew Wilcox <matthew.r.wilcox@intel.com> | 2014-06-04 19:07:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 19:54:02 -0400 |
commit | 1b938c0827478df268d2336469ec48d400a2eb3e (patch) | |
tree | 46d7d57af2408104e40c361d7993f198b492f91e /fs/ocfs2 | |
parent | 399ba0b95670c70aaaa3f4f1623ea9e76c391681 (diff) |
fs/buffer.c: remove block_write_full_page_endio()
The last in-tree caller of block_write_full_page_endio() was removed in
January 2013. It's time to remove the EXPORT_SYMBOL, which leaves
block_write_full_page() as the only caller of
block_write_full_page_endio(), so inline block_write_full_page_endio()
into block_write_full_page().
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Dheeraj Reddy <dheeraj.reddy@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 8970dcf74de5..8eb6e5732d3b 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c | |||
@@ -828,7 +828,7 @@ static int ocfs2_write_zero_page(struct inode *inode, u64 abs_from, | |||
828 | /* | 828 | /* |
829 | * fs-writeback will release the dirty pages without page lock | 829 | * fs-writeback will release the dirty pages without page lock |
830 | * whose offset are over inode size, the release happens at | 830 | * whose offset are over inode size, the release happens at |
831 | * block_write_full_page_endio(). | 831 | * block_write_full_page(). |
832 | */ | 832 | */ |
833 | i_size_write(inode, abs_to); | 833 | i_size_write(inode, abs_to); |
834 | inode->i_blocks = ocfs2_inode_sector_count(inode); | 834 | inode->i_blocks = ocfs2_inode_sector_count(inode); |