Sophie

Sophie

distrib > PLD > ra > i686 > by-pkgid > 03ad0cc020cc4effac6aea82603ce639 > files > 1457

kernel-headers-2.2.22-6.i686.rpm

#ifndef _HSM_P_H
#define _HSM_P_H

#define HSM_BLOCKSIZE 4096
#define HSM_BLOCKSIZE_WORDS (HSM_BLOCKSIZE/4)
#define PACKED __attribute__ ((packed))

/*
 * Identifies a block in physical space
 */
typedef struct phys_idx_s {
	__u16 phys_nr;
	__u32 phys_block;

} PACKED phys_idx_t;

/*
 * Identifies a block in logical space
 */
typedef struct log_idx_s {
	__u16 log_id;
	__u32 log_index;

} PACKED log_idx_t;

/*
 * Describes one PV
 */
#define HSM_PV_SB_MAGIC          0xf091ae9fU

#define HSM_PV_SB_GENERIC_WORDS 32
#define HSM_PV_SB_RESERVED_WORDS \
		(HSM_BLOCKSIZE_WORDS - HSM_PV_SB_GENERIC_WORDS)

/*
 * On-disk PV identification data, on block 0 in any PV.
 */
typedef struct pv_sb_s
{
	__u32 pv_magic;		/*  0 		 			    */

	__u32 pv_uuid0;		/*  1 					    */
	__u32 pv_uuid1;		/*  2		 			    */
	__u32 pv_uuid2;		/*  3 					    */
	__u32 pv_uuid3;		/*  4 					    */

	__u32 pv_major;		/*  5  					    */
	__u32 pv_minor;		/*  6  					    */
	__u32 pv_patch;		/*  7 					    */

	__u32 pv_ctime;		/*  8 Creation time			    */

	__u32 pv_total_size;	/*  9 size of this PV, in blocks	    */
	__u32 pv_first_free;	/*  10 first free block			    */
	__u32 pv_first_used;	/*  11 first used block			    */
	__u32 pv_blocks_left;	/*  12 unallocated blocks		    */
	__u32 pv_bg_size;	/*  13 size of a block group, in blocks	    */
	__u32 pv_block_size;	/*  14 size of blocks, in bytes		    */
	__u32 pv_pptr_size;	/*  15 size of block descriptor, in bytes   */
	__u32 pv_block_groups;	/*  16 number of block groups		    */

	__u32 __reserved1[HSM_PV_SB_GENERIC_WORDS - 17];

	/*
	 * Reserved
	 */
	__u32 __reserved2[HSM_PV_SB_RESERVED_WORDS];

} PACKED pv_sb_t;

/*
 * this is pretty much arbitrary, but has to be less than ~64
 */
#define HSM_MAX_LVS_PER_VG 32

#define HSM_VG_SB_GENERIC_WORDS 32

#define LV_DESCRIPTOR_WORDS 8
#define HSM_VG_SB_RESERVED_WORDS (HSM_BLOCKSIZE_WORDS - \
	LV_DESCRIPTOR_WORDS*HSM_MAX_LVS_PER_VG - HSM_VG_SB_GENERIC_WORDS)

#if (HSM_PV_SB_RESERVED_WORDS < 0)
#error you messed this one up dude ...
#endif

typedef struct lv_descriptor_s
{
	__u32 lv_id;		/*  0 					    */
	phys_idx_t lv_root_idx; /*  1					    */
	__u16 __reserved;	/*  2 					    */
	__u32 lv_max_indices;	/*  3 					    */
	__u32 lv_free_indices;	/*  4 					    */
	__u32 md_id;		/*  5 					    */

	__u32 reserved[LV_DESCRIPTOR_WORDS - 6];

} PACKED lv_descriptor_t;

#define HSM_VG_SB_MAGIC          0x98320d7aU
/*
 * On-disk VG identification data, in block 1 on all PVs
 */
typedef struct vg_sb_s
{
	__u32 vg_magic;		/*  0 		 			    */
	__u32 nr_lvs;		/*  1					    */

	__u32 __reserved1[HSM_VG_SB_GENERIC_WORDS - 2];

	lv_descriptor_t lv_array [HSM_MAX_LVS_PER_VG];
	/*
	 * Reserved
	 */
	__u32 __reserved2[HSM_VG_SB_RESERVED_WORDS];

} PACKED vg_sb_t;

/*
 * Describes one LV
 */

#define HSM_LV_SB_MAGIC          0xe182bd8aU

/* do we need lv_sb_t? */

typedef struct lv_sb_s
{
	/*
	 * On-disk LV identifier
	 */
	__u32 lv_magic;		/*  0 LV identifier 			    */
	__u32 lv_uuid0;		/*  1 					    */
	__u32 lv_uuid1;		/*  2		 			    */
	__u32 lv_uuid2;		/*  3 					    */
	__u32 lv_uuid3;		/*  4 					    */

	__u32 lv_major;		/*  5 PV identifier 			    */
	__u32 lv_minor;		/*  6 PV identifier 			    */
	__u32 lv_patch;		/*  7 PV identifier 			    */

	__u32 ctime;		/*  8 Creation time			    */
	__u32 size;		/*  9 size of this LV, in blocks	    */
	phys_idx_t start;	/*  10 position of root index block	    */
	log_idx_t first_free;	/*  11-12 first free index		    */

	/*
	 * Reserved
	 */
	__u32 reserved[HSM_BLOCKSIZE_WORDS-13];

} PACKED lv_sb_t;

/*
 * Pointer pointing from the physical space, points to
 * the LV owning this block. It also contains various
 * statistics about the physical block.
 */
typedef struct pv_pptr_s
{
	union {
	/* case 1 */
		struct {
			log_idx_t owner;
			log_idx_t predicted;
			__u32 last_referenced;
		} used;
	/* case 2 */
		struct {
			__u16 log_id;
			__u16 __unused1;
			__u32 next_free;
			__u32 __unused2;
			__u32 __unused3;
		} free;
	} u;
} PACKED pv_pptr_t;

static __inline__ int pv_pptr_free (const pv_pptr_t * pptr)
{
	return !pptr->u.free.log_id;
}


#define DATA_BLOCKS_PER_BG ((HSM_BLOCKSIZE*8)/(8*sizeof(pv_pptr_t)+1))

#define TOTAL_BLOCKS_PER_BG (DATA_BLOCKS_PER_BG+1)
/*
 * A table of pointers filling up a single block, managing
 * the next DATA_BLOCKS_PER_BG physical blocks. Such block
 * groups form the physical space of blocks.
 */
typedef struct pv_block_group_s
{
	__u8 used_bitmap[(DATA_BLOCKS_PER_BG+7)/8];

	pv_pptr_t blocks[DATA_BLOCKS_PER_BG];

} PACKED pv_block_group_t;

/*
 * Pointer from the logical space, points to
 * the (PV,block) containing this logical block
 */
typedef struct lv_lptr_s
{
	phys_idx_t data;
	__u16 __reserved;
	__u32 cpu_addr;
	__u32 __reserved2;

} PACKED lv_lptr_t;

static __inline__ int index_free (const lv_lptr_t * index)
{
	return !index->data.phys_block;
}

static __inline__ int index_present (const lv_lptr_t * index)
{
	return index->cpu_addr;
}


#define HSM_LPTRS_PER_BLOCK (HSM_BLOCKSIZE/sizeof(lv_lptr_t))
/*
 * A table of pointers filling up a single block, managing
 * HSM_LPTRS_PER_BLOCK logical blocks. Such block groups form
 * the logical space of blocks.
 */
typedef struct lv_index_block_s
{
	lv_lptr_t blocks[HSM_LPTRS_PER_BLOCK];

} PACKED lv_index_block_t;

#endif