From: Nikhil Kshirsagar Date: Fri, 10 Jun 2016 03:20:10 +0000 (+0530) Subject: The sys_name array in the mdinfo structure is 20 bytes of storage. X-Git-Tag: mdadm-4.0~82 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fmdadm.git;a=commitdiff_plain;h=6e6e98746dba7e900f23e92bbb0da01fe7a169da The sys_name array in the mdinfo structure is 20 bytes of storage. Increasing the size of this array to 32 bytes to handle cases with longer device names. Signed-off-by: Nikhil Kshirsagar Signed-off-by: Jes Sorensen --- diff --git a/mdadm.h b/mdadm.h index 3d6c638e..1fd38a37 100755 --- a/mdadm.h +++ b/mdadm.h @@ -289,7 +289,7 @@ struct mdinfo { int container_enough; /* flag external handlers can set to * indicate that subarrays have not enough (-1), * enough to start (0), or all expected disks (1) */ - char sys_name[20]; + char sys_name[32]; struct mdinfo *devs; struct mdinfo *next;