Bug 1221571
Summary: | aarch64: md-create fails to create Linux md (RAID) device | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Hu Zhang <huzhan> |
Component: | libguestfs | Assignee: | Richard W.M. Jones <rjones> |
Status: | CLOSED NOTABUG | QA Contact: | Virtualization Bugs <virt-bugs> |
Severity: | medium | Docs Contact: | |
Priority: | low | ||
Version: | 7.1 | CC: | leiwang, linl, ptoscano, wshi |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | aarch64 | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2015-09-23 15:21:57 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Hu Zhang
2015-05-14 11:42:18 UTC
One line reproducer: guestfish -N disk:5G -N disk:5G -N disk:5G \ md-create md11 "/dev/sda /dev/sdb /dev/sdc" missingbitmap:0x4 chunk:8192 level:raid6 The error is reproducible on Rawhide/aarch64 too. I believe this is caused by the larger page size on aarch64. Page size on aarch64 is 64K, whereas on x86 it is 4K. If you increase the chunk: parameter to 65536, then the error goes away. ie This command works fine (on Rawhide/aarch64): guestfish -N disk:5G -N disk:5G -N disk:5G \ md-create md11 "/dev/sda /dev/sdb /dev/sdc" missingbitmap:0x4 chunk:65536 level:raid6 So this is either NOTABUG or a bug in mdadm depending on your viewpoint. |