From: Neil Brown Date: Wed, 8 Jun 2005 00:34:04 +0000 (+0000) Subject: Make type of uuid always int[], rather than sometimes __u32[] X-Git-Tag: mdadm-1.12.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60b1d3e0ab42de6ad43b0cf2ff3aa62a24172043;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 03364e93..810c7e3d 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 f69695cd..8542f570 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;