From: Paul Clements <paul.clements@steeleye.com>
To: Neil Brown <neilb@suse.de>
Cc: linux-raid@vger.kernel.org
Subject: Re: [PATCH] ANNOUNCE: mdadm 2.5.1 - A tool for managing Soft RAID under Linux
Date: Mon, 19 Jun 2006 11:09:14 -0400 [thread overview]
Message-ID: <4496BE1A.8010502@steeleye.com> (raw)
In-Reply-To: <4492F066.7060709@tmr.com>
[-- Attachment #1: Type: text/plain, Size: 1052 bytes --]
Bill Davidsen wrote:
> Paul Clements wrote:
>
>> Neil Brown wrote:
>>
>>>
>>> I am pleased to announce the availability of
>>> mdadm version 2.5.1
and here's another patch for a compile error on ppc...
Since ppc is big endian, the compiler is complaining because it can't
determine whether the isuper post-increment (++) is actually going to be
evaluated (__le32_to_cpu is a macro). On x86 the macro is a no-op, so I
guess the compiler is smart enough to figure out that the post-increment
is actually happening?
Here's the warning (gcc 3.2.3):
$ make
gcc -Wall -Werror -Wstrict-prototypes -ggdb
-DSendmail=\""/usr/sbin/sendmail -t"\" -DCONFFILE=\"/etc/mdadm.conf\"
-DCONFFILE2=\"/etc/mdadm/mdadm.conf\" -c -o super1.o super1.c
cc1: warnings being treated as errors
super1.c: In function `calc_sb_1_csum':
super1.c:128: warning: operation on `isuper' may be undefined
super1.c:128: warning: operation on `isuper' may be undefined
super1.c:128: warning: operation on `isuper' may be undefined
make: *** [super1.o] Error 1
Thanks,
Paul
[-- Attachment #2: mdadm-2.5.1-super1-compile-error-ppc.diff --]
[-- Type: text/plain, Size: 522 bytes --]
--- super1.c 2006-06-19 05:17:36.000000000 -0400
+++ /export/public/clemep/tmp/super1-ppc-compile-error.c 2006-06-19 00:40:26.000000000 -0400
@@ -124,8 +124,11 @@ static unsigned int calc_sb_1_csum(struc
disk_csum = sb->sb_csum;
sb->sb_csum = 0;
newcsum = 0;
- for (i=0; size>=4; size -= 4 )
- newcsum += __le32_to_cpu(*isuper++);
+ for (i=0; size>=4; size -= 4 ) {
+ unsigned int *x = isuper;
+ newcsum += __le32_to_cpu(*x);
+ x++;
+ }
if (size == 2)
newcsum += __le16_to_cpu(*(unsigned short*) isuper);
next prev parent reply other threads:[~2006-06-19 15:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-16 1:03 ANNOUNCE: mdadm 2.5.1 - A tool for managing Soft RAID under Linux Neil Brown
2006-06-16 15:46 ` Paul Clements
2006-06-16 17:54 ` Bill Davidsen
2006-06-19 15:09 ` Paul Clements [this message]
2006-06-19 18:58 ` [PATCH] " Paul Clements
2006-06-20 0:04 ` Neil Brown
2006-06-19 19:02 ` Paul Clements
2006-06-17 2:12 ` mdadm 2.5.1 - A problem came up Mr. James W. Laferriere
2006-06-17 7:00 ` Neil Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4496BE1A.8010502@steeleye.com \
--to=paul.clements@steeleye.com \
--cc=linux-raid@vger.kernel.org \
--cc=neilb@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).