diff options
author | Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com> | 2024-03-18 16:19:29 +0100 |
---|---|---|
committer | Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com> | 2024-03-22 12:15:37 +0100 |
commit | 1c8327950566449e206e613c11c8232032f26787 (patch) | |
tree | bd87c9d4ba32c2c8f687928c1856059f8a781cd4 /super-ddf.c | |
parent | util.c: add limits.h include for NAME_MAX definition (diff) | |
download | mdadm-1c8327950566449e206e613c11c8232032f26787.tar.xz mdadm-1c8327950566449e206e613c11c8232032f26787.zip |
mdadm: set swapuuid in all handlers
It is not set, so it should be 0 but it may vary on compilation
settings. Set it always to 0.
metadata should care to set UUID and read in proper endianness so it
doesn't follow super1 concept of swapuuid to depend on endianness.
It is not an attempt to fix endianness issues.
Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Diffstat (limited to 'super-ddf.c')
-rw-r--r-- | super-ddf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/super-ddf.c b/super-ddf.c index 7571e3b7..94ac5ff3 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -5162,6 +5162,7 @@ struct superswitch super_ddf = { .default_geometry = default_geometry_ddf, .external = 1, + .swapuuid = 0, /* for mdmon */ .open_new = ddf_open_new, |