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

index 03364e9371541ac1c4ed624b02606a0b0a00ca08..810c7e3da37083dd9870e6ce901a1177e6a56b83 100644 (file)
--- 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 f69695cd5ee617bf7bdbedc26957c0b6a9ec21da..8542f5705f6ec5c944728f56b0ee27c8387c633d 100644 (file)
--- 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;