summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2005-06-14 06:32:34 +0000
committerNeil Brown <neilb@suse.de>2005-06-14 06:32:34 +0000
commit3fa06e9d37b9b517b4120c6a9dffd56d9cfa2e96 (patch)
treeec4d997ba5c9b451179409777a6bea13cb4a3d39
parent91f068bf5cc423d7f7d3feba63e4c7add3a786de (diff)
downloadmdadm-3fa06e9d37b9b517b4120c6a9dffd56d9cfa2e96.tar.gz
mdadm-3fa06e9d37b9b517b4120c6a9dffd56d9cfa2e96.tar.xz
mdadm-3fa06e9d37b9b517b4120c6a9dffd56d9cfa2e96.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 38e6758..485de69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@ Changes Prior to this 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 7a901c7..41e6702 100644
--- a/mdadm.h
+++ b/mdadm.h
@@ -109,7 +109,7 @@ typedef struct mddev_ident_s {
char *devname;
int uuid_set;
- __u32 uuid[4];
+ int uuid[4];
unsigned int super_minor;