diff options
author | Nathan Scott <nathans@sgi.com> | 2006-01-10 23:39:08 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-01-10 23:39:08 -0500 |
commit | ce8e922c0e79c8093452ba9a124981332b75706b (patch) | |
tree | 0f681391461d4d6bbccd3bf88a7762cc7daa8852 /fs/xfs/linux-2.6/xfs_super.c | |
parent | 68bdb6eabcd2869caa795019961a5445a11b5bc1 (diff) |
[XFS] Complete the pagebuf -> xfs_buf naming convention transition,
finally.
SGI-PV: 947038
SGI-Modid: xfs-linux-melb:xfs-kern:24866a
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.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index d8ec7463d8f4..556c1437b17d 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
@@ -309,7 +309,7 @@ xfs_mountfs_check_barriers(xfs_mount_t *mp) | |||
309 | return; | 309 | return; |
310 | } | 310 | } |
311 | 311 | ||
312 | if (mp->m_ddev_targp->pbr_bdev->bd_disk->queue->ordered == | 312 | if (mp->m_ddev_targp->bt_bdev->bd_disk->queue->ordered == |
313 | QUEUE_ORDERED_NONE) { | 313 | QUEUE_ORDERED_NONE) { |
314 | xfs_fs_cmn_err(CE_NOTE, mp, | 314 | xfs_fs_cmn_err(CE_NOTE, mp, |
315 | "Disabling barriers, not supported by the underlying device"); | 315 | "Disabling barriers, not supported by the underlying device"); |
@@ -330,7 +330,7 @@ void | |||
330 | xfs_blkdev_issue_flush( | 330 | xfs_blkdev_issue_flush( |
331 | xfs_buftarg_t *buftarg) | 331 | xfs_buftarg_t *buftarg) |
332 | { | 332 | { |
333 | blkdev_issue_flush(buftarg->pbr_bdev, NULL); | 333 | blkdev_issue_flush(buftarg->bt_bdev, NULL); |
334 | } | 334 | } |
335 | 335 | ||
336 | STATIC struct inode * | 336 | STATIC struct inode * |
@@ -969,9 +969,9 @@ init_xfs_fs( void ) | |||
969 | if (error < 0) | 969 | if (error < 0) |
970 | goto undo_zones; | 970 | goto undo_zones; |
971 | 971 | ||
972 | error = pagebuf_init(); | 972 | error = xfs_buf_init(); |
973 | if (error < 0) | 973 | if (error < 0) |
974 | goto undo_pagebuf; | 974 | goto undo_buffers; |
975 | 975 | ||
976 | vn_init(); | 976 | vn_init(); |
977 | xfs_init(); | 977 | xfs_init(); |
@@ -985,9 +985,9 @@ init_xfs_fs( void ) | |||
985 | return 0; | 985 | return 0; |
986 | 986 | ||
987 | undo_register: | 987 | undo_register: |
988 | pagebuf_terminate(); | 988 | xfs_buf_terminate(); |
989 | 989 | ||
990 | undo_pagebuf: | 990 | undo_buffers: |
991 | linvfs_destroy_zones(); | 991 | linvfs_destroy_zones(); |
992 | 992 | ||
993 | undo_zones: | 993 | undo_zones: |
@@ -1001,7 +1001,7 @@ exit_xfs_fs( void ) | |||
1001 | XFS_DM_EXIT(&xfs_fs_type); | 1001 | XFS_DM_EXIT(&xfs_fs_type); |
1002 | unregister_filesystem(&xfs_fs_type); | 1002 | unregister_filesystem(&xfs_fs_type); |
1003 | xfs_cleanup(); | 1003 | xfs_cleanup(); |
1004 | pagebuf_terminate(); | 1004 | xfs_buf_terminate(); |
1005 | linvfs_destroy_zones(); | 1005 | linvfs_destroy_zones(); |
1006 | ktrace_uninit(); | 1006 | ktrace_uninit(); |
1007 | } | 1007 | } |