]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Make type of uuid always int[], rather than sometimes __u32[]
authorNeil Brown <neilb@suse.de>
Tue, 14 Jun 2005 06:32:34 +0000 (06:32 +0000)
committerNeil Brown <neilb@suse.de>
Tue, 14 Jun 2005 06:32:34 +0000 (06:32 +0000)
Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
ChangeLog
mdadm.h

index 38e6758b4475c981ad82b956c181c69b37320c90..485de69146d5b13ea364b2566dfe2e90bcc9d6f3 100644 (file)
--- 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 7a901c711d702143d8b6ff735685746d3e6f975b..41e6702c999c3df13d0d3f42ff13a56950735bc0 100644 (file)
--- 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;