Skip to content

Commit

Permalink
[XFS] Make couple names consitent, be more defensive on releasepage (and
Browse files Browse the repository at this point in the history
prep for nobh, someday, maybe).

SGI-PV: 904196
SGI-Modid: xfs-linux-melb:xfs-kern:25481a

Signed-off-by: Nathan Scott <nathans@sgi.com>
  • Loading branch information
Nathan Scott committed Mar 17, 2006
1 parent a13828b commit 238f4c5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions fs/xfs/linux-2.6/xfs_aops.c
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ xfs_vm_writepage(
* free them and we should come back later via writepage.
*/
STATIC int
xfs_vm_release_page(
xfs_vm_releasepage(
struct page *page,
gfp_t gfp_mask)
{
Expand All @@ -1191,6 +1191,9 @@ xfs_vm_release_page(

xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, gfp_mask);

if (!page_has_buffers(page))
return 0;

xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
if (!delalloc && !unwritten)
goto free_buffers;
Expand Down Expand Up @@ -1440,7 +1443,7 @@ xfs_vm_readpages(
}

STATIC int
xfs_vm_invalidate_page(
xfs_vm_invalidatepage(
struct page *page,
unsigned long offset)
{
Expand All @@ -1454,8 +1457,8 @@ struct address_space_operations xfs_address_space_operations = {
.readpages = xfs_vm_readpages,
.writepage = xfs_vm_writepage,
.sync_page = block_sync_page,
.releasepage = xfs_vm_release_page,
.invalidatepage = xfs_vm_invalidate_page,
.releasepage = xfs_vm_releasepage,
.invalidatepage = xfs_vm_invalidatepage,
.prepare_write = xfs_vm_prepare_write,
.commit_write = generic_commit_write,
.bmap = xfs_vm_bmap,
Expand Down

0 comments on commit 238f4c5

Please sign in to comment.