/[smeserver]/rpms/mdadm/sme7/mdadm-1.12.0-s390.patch
ViewVC logotype

Contents of /rpms/mdadm/sme7/mdadm-1.12.0-s390.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Tue Jun 12 16:34:40 2007 UTC (16 years, 11 months ago) by slords
Branch: MAIN
CVS Tags: mdadm-1_12_0-5_1_el4_sme, mdadm-1_12_0-2_el4_sme, HEAD
Import on branch sme7 of package mdadm-1.12.0-2.el4.sme.src.rpm

1 --- mdadm-1.12.0/Create.c.s390 2005-06-13 20:04:13.000000000 -0400
2 +++ mdadm-1.12.0/Create.c 2007-01-31 13:48:23.000000000 -0500
3 @@ -28,6 +28,7 @@
4 */
5
6 #include "mdadm.h"
7 +#include <limits.h>
8 #include "md_u.h"
9 #include "md_p.h"
10
11 @@ -249,6 +250,15 @@
12 fprintf(stderr, Name ": no size and no drives given - aborting create.\n");
13 return 1;
14 }
15 + if (level == -1) {
16 + /* linear devices need to be within the limit of
17 + * INT_MAX or else they overflow math in the kernel
18 + */
19 + if (maxsize > (unsigned long long)INT_MAX) {
20 + fprintf(stderr, Name ": size of %s exceeds 0x%08x\n", maxdisc, INT_MAX);
21 + return 1;
22 + }
23 + }
24 if (level > 0) {
25 /* size is meaningful */
26 if (minsize > 0x100000000ULL) {

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed