diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 13:29:39 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 13:29:39 -0800 |
commit | bea4c899f2b5fad80099aea979780ef19f9b1987 (patch) | |
tree | 65130f4bc91b92e72498fc58bf895d35f2ebf0f2 /fs/xfs/xfs_bmap_btree.h | |
parent | 73efc4681cb5e3c8807daf106f001e7f0798d8a0 (diff) | |
parent | 3fc98b1ac036675b95f6e3fafd5ef147b97d4d30 (diff) | |
download | kernel_samsung_aries-bea4c899f2b5fad80099aea979780ef19f9b1987.zip kernel_samsung_aries-bea4c899f2b5fad80099aea979780ef19f9b1987.tar.gz kernel_samsung_aries-bea4c899f2b5fad80099aea979780ef19f9b1987.tar.bz2 |
Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
* 'for-linus' of git://oss.sgi.com/xfs/xfs:
XFS: Free buffer pages array unconditionally
xfs: kill xfs_bmbt_rec_32/64 types
xfs: improve metadata I/O merging in the elevator
xfs: check for not fully initialized inodes in xfs_ireclaim
Diffstat (limited to 'fs/xfs/xfs_bmap_btree.h')
-rw-r--r-- | fs/xfs/xfs_bmap_btree.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/fs/xfs/xfs_bmap_btree.h b/fs/xfs/xfs_bmap_btree.h index 5549d49..cf07ca7 100644 --- a/fs/xfs/xfs_bmap_btree.h +++ b/fs/xfs/xfs_bmap_btree.h @@ -46,20 +46,12 @@ typedef struct xfs_bmdr_block { #define BMBT_STARTBLOCK_BITLEN 52 #define BMBT_BLOCKCOUNT_BITLEN 21 - -#define BMBT_USE_64 1 - -typedef struct xfs_bmbt_rec_32 -{ - __uint32_t l0, l1, l2, l3; -} xfs_bmbt_rec_32_t; -typedef struct xfs_bmbt_rec_64 -{ +typedef struct xfs_bmbt_rec { __be64 l0, l1; -} xfs_bmbt_rec_64_t; +} xfs_bmbt_rec_t; typedef __uint64_t xfs_bmbt_rec_base_t; /* use this for casts */ -typedef xfs_bmbt_rec_64_t xfs_bmbt_rec_t, xfs_bmdr_rec_t; +typedef xfs_bmbt_rec_t xfs_bmdr_rec_t; typedef struct xfs_bmbt_rec_host { __uint64_t l0, l1; |