* [PATCH 04/15] add generic btree types
@ 2008-07-23 20:08 Christoph Hellwig
2008-07-24 23:26 ` Dave Chinner
0 siblings, 1 reply; 2+ messages in thread
From: Christoph Hellwig @ 2008-07-23 20:08 UTC (permalink / raw)
To: xfs
[-- Attachment #1: xfs-btree-add-generic-types --]
[-- Type: text/plain, Size: 1580 bytes --]
Add generic union types for btree pointers, keys and records. The generic
btree pointer contains a 32 and 64bit big endian type for short and long
form btrees, and the key and record contain the relevant type for each
possible btree.
Split out from a bigger patch from Dave Chinner and simplified a little
further.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: linux-2.6-xfs/fs/xfs/xfs_btree.h
===================================================================
--- linux-2.6-xfs.orig/fs/xfs/xfs_btree.h 2008-07-14 17:26:11.000000000 +0200
+++ linux-2.6-xfs/fs/xfs/xfs_btree.h 2008-07-14 17:27:59.000000000 +0200
@@ -70,6 +70,12 @@ typedef struct xfs_btree_hdr
__be16 bb_numrecs; /* current # of data records */
} xfs_btree_hdr_t;
+/*
+ * Generic block, key, ptr and record wrapper structures
+ * These are disk format structures, and are converted where
+ * necessary be the btree specific code that needs to interpret
+ * them.
+ */
typedef struct xfs_btree_block {
xfs_btree_hdr_t bb_h; /* header */
union {
@@ -84,6 +90,25 @@ typedef struct xfs_btree_block {
} bb_u; /* rest */
} xfs_btree_block_t;
+union xfs_btree_ptr {
+ __be32 s; /* short form ptr */
+ __be64 l; /* long form ptr */
+};
+
+union xfs_btree_key {
+ xfs_bmbt_key_t bmbt;
+ xfs_bmdr_key_t bmbr; /* bmbt root block */
+ xfs_alloc_key_t alloc;
+ xfs_inobt_key_t inobt;
+};
+
+union xfs_btree_rec {
+ xfs_bmbt_rec_t bmbt;
+ xfs_bmdr_rec_t bmbr; /* bmbt root block */
+ xfs_alloc_rec_t alloc;
+ xfs_inobt_rec_t inobt;
+};
+
/*
* For logging record fields.
*/
--
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 04/15] add generic btree types
2008-07-23 20:08 [PATCH 04/15] add generic btree types Christoph Hellwig
@ 2008-07-24 23:26 ` Dave Chinner
0 siblings, 0 replies; 2+ messages in thread
From: Dave Chinner @ 2008-07-24 23:26 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: xfs
On Wed, Jul 23, 2008 at 10:08:42PM +0200, Christoph Hellwig wrote:
> Add generic union types for btree pointers, keys and records. The generic
> btree pointer contains a 32 and 64bit big endian type for short and long
> form btrees, and the key and record contain the relevant type for each
> possible btree.
>
> Split out from a bigger patch from Dave Chinner and simplified a little
> further.
Looks good.
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-24 23:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-23 20:08 [PATCH 04/15] add generic btree types Christoph Hellwig
2008-07-24 23:26 ` Dave Chinner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox