From: Neil Brown Date: Tue, 14 Jun 2005 06:32:34 +0000 (+0000) Subject: Make type of uuid always int[], rather than sometimes __u32[] X-Git-Tag: mdadm-2.0-devel-2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fa06e9d37b9b517b4120c6a9dffd56d9cfa2e96;p=thirdparty%2Fmdadm.git Make type of uuid always int[], rather than sometimes __u32[] Signed-off-by: Neil Brown --- diff --git a/ChangeLog b/ChangeLog index 38e6758b..485de691 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 7a901c71..41e6702c 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;