diff options
author | Christoph Hellwig <hch@infradead.org> | 2007-08-16 02:23:40 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-10-15 02:25:51 -0400 |
commit | a6f64d4aea0d0c8483e910c7dd2d1ee48e42245c (patch) | |
tree | f3fb20bb6d816f6d674bd4c8bfa687b013443eaf /fs/xfs/xfs_inode.h | |
parent | d580ef6eaae6eaaef1e06c7d689fc9949faee9da (diff) |
[XFS] split ondisk vs incore versions of xfs_bmbt_rec_t
currently xfs_bmbt_rec_t is used both for ondisk extents as well as
host-endian ones. This patch adds a new xfs_bmbt_rec_host_t for the native
endian ones and cleans up the fallout. There have been various endianess
issues in the tracing / debug printf code that are fixed by this patch.
SGI-PV: 968563
SGI-Modid: xfs-linux-melb:xfs-kern:29318a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 012dfd4a958c..6fae71b42922 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h | |||
@@ -44,7 +44,7 @@ | |||
44 | * it is possible that a third level of indirection may be required. | 44 | * it is possible that a third level of indirection may be required. |
45 | */ | 45 | */ |
46 | typedef struct xfs_ext_irec { | 46 | typedef struct xfs_ext_irec { |
47 | xfs_bmbt_rec_t *er_extbuf; /* block of extent records */ | 47 | xfs_bmbt_rec_host_t *er_extbuf; /* block of extent records */ |
48 | xfs_extnum_t er_extoff; /* extent offset in file */ | 48 | xfs_extnum_t er_extoff; /* extent offset in file */ |
49 | xfs_extnum_t er_extcount; /* number of extents in page/block */ | 49 | xfs_extnum_t er_extcount; /* number of extents in page/block */ |
50 | } xfs_ext_irec_t; | 50 | } xfs_ext_irec_t; |
@@ -65,12 +65,12 @@ typedef struct xfs_ifork { | |||
65 | unsigned char if_ext_max; /* max # of extent records */ | 65 | unsigned char if_ext_max; /* max # of extent records */ |
66 | xfs_extnum_t if_lastex; /* last if_extents used */ | 66 | xfs_extnum_t if_lastex; /* last if_extents used */ |
67 | union { | 67 | union { |
68 | xfs_bmbt_rec_t *if_extents; /* linear map file exts */ | 68 | xfs_bmbt_rec_host_t *if_extents;/* linear map file exts */ |
69 | xfs_ext_irec_t *if_ext_irec; /* irec map file exts */ | 69 | xfs_ext_irec_t *if_ext_irec; /* irec map file exts */ |
70 | char *if_data; /* inline file data */ | 70 | char *if_data; /* inline file data */ |
71 | } if_u1; | 71 | } if_u1; |
72 | union { | 72 | union { |
73 | xfs_bmbt_rec_t if_inline_ext[XFS_INLINE_EXTS]; | 73 | xfs_bmbt_rec_host_t if_inline_ext[XFS_INLINE_EXTS]; |
74 | /* very small file extents */ | 74 | /* very small file extents */ |
75 | char if_inline_data[XFS_INLINE_DATA]; | 75 | char if_inline_data[XFS_INLINE_DATA]; |
76 | /* very small file data */ | 76 | /* very small file data */ |
@@ -549,7 +549,7 @@ xfs_inode_t *xfs_vtoi(struct bhv_vnode *vp); | |||
549 | 549 | ||
550 | void xfs_synchronize_atime(xfs_inode_t *); | 550 | void xfs_synchronize_atime(xfs_inode_t *); |
551 | 551 | ||
552 | xfs_bmbt_rec_t *xfs_iext_get_ext(xfs_ifork_t *, xfs_extnum_t); | 552 | xfs_bmbt_rec_host_t *xfs_iext_get_ext(xfs_ifork_t *, xfs_extnum_t); |
553 | void xfs_iext_insert(xfs_ifork_t *, xfs_extnum_t, xfs_extnum_t, | 553 | void xfs_iext_insert(xfs_ifork_t *, xfs_extnum_t, xfs_extnum_t, |
554 | xfs_bmbt_irec_t *); | 554 | xfs_bmbt_irec_t *); |
555 | void xfs_iext_add(xfs_ifork_t *, xfs_extnum_t, int); | 555 | void xfs_iext_add(xfs_ifork_t *, xfs_extnum_t, int); |
@@ -564,7 +564,7 @@ void xfs_iext_indirect_to_direct(xfs_ifork_t *); | |||
564 | void xfs_iext_direct_to_inline(xfs_ifork_t *, xfs_extnum_t); | 564 | void xfs_iext_direct_to_inline(xfs_ifork_t *, xfs_extnum_t); |
565 | void xfs_iext_inline_to_direct(xfs_ifork_t *, int); | 565 | void xfs_iext_inline_to_direct(xfs_ifork_t *, int); |
566 | void xfs_iext_destroy(xfs_ifork_t *); | 566 | void xfs_iext_destroy(xfs_ifork_t *); |
567 | xfs_bmbt_rec_t *xfs_iext_bno_to_ext(xfs_ifork_t *, xfs_fileoff_t, int *); | 567 | xfs_bmbt_rec_host_t *xfs_iext_bno_to_ext(xfs_ifork_t *, xfs_fileoff_t, int *); |
568 | xfs_ext_irec_t *xfs_iext_bno_to_irec(xfs_ifork_t *, xfs_fileoff_t, int *); | 568 | xfs_ext_irec_t *xfs_iext_bno_to_irec(xfs_ifork_t *, xfs_fileoff_t, int *); |
569 | xfs_ext_irec_t *xfs_iext_idx_to_irec(xfs_ifork_t *, xfs_extnum_t *, int *, int); | 569 | xfs_ext_irec_t *xfs_iext_idx_to_irec(xfs_ifork_t *, xfs_extnum_t *, int *, int); |
570 | void xfs_iext_irec_init(xfs_ifork_t *); | 570 | void xfs_iext_irec_init(xfs_ifork_t *); |