summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2005-06-08 00:34:04 +0000
committerNeil Brown <neilb@suse.de>2005-06-08 00:34:04 +0000
commit60b1d3e0ab42de6ad43b0cf2ff3aa62a24172043 (patch)
tree1d9f2f6f5094634a638b692f68c7e6352bd39b23
parentd108473ee6c2c60ce3ee3217301293d279d4170a (diff)
downloadmdadm-60b1d3e0ab42de6ad43b0cf2ff3aa62a24172043.tar.gz
mdadm-60b1d3e0ab42de6ad43b0cf2ff3aa62a24172043.tar.xz
mdadm-60b1d3e0ab42de6ad43b0cf2ff3aa62a24172043.zip
Make type of uuid always int[], rather than sometimes __u32[]
Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
-rw-r--r--ChangeLog1
-rw-r--r--mdadm.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 03364e9..810c7e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@ Changes Prior to 1.12.0 release
- Document SparesMissing event and DeviceDisappeared/WrongLevel
- --stop --scan repeatly cycles until no more progress can be made
so that stack devices are stopped properly
+ - Minor type rationalisation for ident->uuid - now always 'int[]'
Changes Prior to 1.11.0 release
- Fix embarassing bug which causes --add to always fail.
diff --git a/mdadm.h b/mdadm.h
index f69695c..8542f57 100644
--- a/mdadm.h
+++ b/mdadm.h
@@ -98,7 +98,7 @@ typedef struct mddev_ident_s {
char *devname;
int uuid_set;
- __u32 uuid[4];
+ int uuid[4];
unsigned int super_minor;