diff options
author | Neil Brown <neilb@suse.de> | 2004-08-11 02:16:01 +0000 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2004-08-11 02:16:01 +0000 |
commit | e5329c3747a4e9eb7addbfaa59b8d5e8688ce2a1 (patch) | |
tree | 889e38efabcc146f7ee4c59f39c79aae7c783d8d /md_p.h | |
parent | dd0781e50555c32ff2f808ec46f4b03a5693ea47 (diff) | |
download | mdadm-e5329c3747a4e9eb7addbfaa59b8d5e8688ce2a1.tar.gz |
mdadm-1.7.0mdadm-1.7.0
Diffstat (limited to 'md_p.h')
-rw-r--r-- | md_p.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -131,11 +131,16 @@ typedef struct mdp_superblock_s { #if __BYTE_ORDER == __BIG_ENDIAN __u32 events_hi; /* 7 high-order of superblock update count */ __u32 events_lo; /* 8 low-order of superblock update count */ + __u32 cp_events_hi; /* 9 high-order of checkpoint update count */ + __u32 cp_events_lo; /* 10 low-order of checkpoint update count */ #else __u32 events_lo; /* 7 low-order of superblock update count */ __u32 events_hi; /* 8 high-order of superblock update count */ + __u32 cp_events_lo; /* 9 low-order of checkpoint update count */ + __u32 cp_events_hi; /* 10 high-order of checkpoint update count */ #endif - __u32 gstate_sreserved[MD_SB_GENERIC_STATE_WORDS - 9]; + __u32 recovery_cp; /* 11 recovery checkpoint sector count */ + __u32 gstate_sreserved[MD_SB_GENERIC_STATE_WORDS - 12]; /* * Personality information |