aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_super.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-03-13 21:54:26 -0500
committerNathan Scott <nathans@sgi.com>2006-03-13 21:54:26 -0500
commite4c573bb6a8477a26b3d5471fd116d258760a13a (patch)
tree6a3466f40c2102ff8f161fc70861040791474ed8 /fs/xfs/linux-2.6/xfs_super.c
parentb8b0f546569871b365a5e3b3cc3f667af658dd49 (diff)
[XFS] Switch over from linvfs names for address space ops for consistent
naming. SGI-PV: 950556 SGI-Modid: xfs-linux-melb:xfs-kern:25378a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index 4d8613f65c2c..fb76c53f9c43 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -129,7 +129,7 @@ xfs_set_inodeops(
129 case S_IFREG: 129 case S_IFREG:
130 inode->i_op = &linvfs_file_inode_operations; 130 inode->i_op = &linvfs_file_inode_operations;
131 inode->i_fop = &linvfs_file_operations; 131 inode->i_fop = &linvfs_file_operations;
132 inode->i_mapping->a_ops = &linvfs_aops; 132 inode->i_mapping->a_ops = &xfs_address_space_operations;
133 break; 133 break;
134 case S_IFDIR: 134 case S_IFDIR:
135 inode->i_op = &linvfs_dir_inode_operations; 135 inode->i_op = &linvfs_dir_inode_operations;
@@ -138,7 +138,7 @@ xfs_set_inodeops(
138 case S_IFLNK: 138 case S_IFLNK:
139 inode->i_op = &linvfs_symlink_inode_operations; 139 inode->i_op = &linvfs_symlink_inode_operations;
140 if (inode->i_blocks) 140 if (inode->i_blocks)
141 inode->i_mapping->a_ops = &linvfs_aops; 141 inode->i_mapping->a_ops = &xfs_address_space_operations;
142 break; 142 break;
143 default: 143 default:
144 inode->i_op = &linvfs_file_inode_operations; 144 inode->i_op = &linvfs_file_inode_operations;