From: Paul Clements <paul.clements@steeleye.com>
To: neilb@suse.de
Cc: linux-raid@vger.kernel.org
Subject: [BUG/PATCH] md bitmap broken on big endian machines
Date: Thu, 21 Sep 2006 16:26:05 -0400 [thread overview]
Message-ID: <4512F55D.5030907@steeleye.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 875 bytes --]
Neil,
We just discovered this problem on a 64-bit IBM POWER (ppc64) system.
The symptom was this BUG():
Sep 20 20:55:51 caspian kernel: kernel BUG in sync_request at
drivers/md/raid1.c
:1743!
Sep 20 20:55:51 caspian kernel: Oops: Exception in kernel mode, sig: 5 [#1]
Sep 20 20:55:51 caspian kernel: SMP NR_CPUS=128 NUMA PSERIES LPAR
Sep 20 20:55:51 caspian kernel: Modules linked in: nbd raid1 ipv6 nfs
lockd nfs_
acl sunrpc apparmor aamatch_pcre loop dm_mod e1000 ide_cd cdrom lpfc
scsi_transp
ort_fc pdc202xx_new sg st ipr firmware_class sd_mod scsi_mod
I traced the problem back to a bad value in bitmap->chunkshift (the
value was 8, instead of 16, with a chunksize of 64K). I think this means
that bitmaps are broken on all big endian systems. It looks like we
should be using ffs instead of find_first_bit. Patch has been compile
tested only.
Thanks,
Paul
[-- Attachment #2: md_bitmap_find_first_bug.diff --]
[-- Type: text/plain, Size: 488 bytes --]
--- ./drivers/md/bitmap.c.orig 2006-09-21 16:10:17.000000000 -0400
+++ ./drivers/md/bitmap.c 2006-09-21 16:12:16.000000000 -0400
@@ -1578,8 +1578,7 @@ int bitmap_create(mddev_t *mddev)
if (err)
goto error;
- bitmap->chunkshift = find_first_bit(&bitmap->chunksize,
- sizeof(bitmap->chunksize));
+ bitmap->chunkshift = ffs(bitmap->chunksize) - 1;
/* now that chunksize and chunkshift are set, we can use these macros */
chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) /
next reply other threads:[~2006-09-21 20:26 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-21 20:26 Paul Clements [this message]
2006-09-22 15:29 ` [PATCH] md SET_BITMAP_FILE compat ioctl Paul Clements
2006-09-28 7:31 ` Neil Brown
2006-09-28 6:34 ` [BUG/PATCH] md bitmap broken on big endian machines Neil Brown
2006-09-28 22:09 ` Michael Tokarev
2006-09-29 0:48 ` Paul Clements
2006-09-29 7:03 ` Michael Tokarev
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=4512F55D.5030907@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.