diff options
author | Robin Holt <holt@sgi.com> | 2009-12-15 19:47:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 10:20:14 -0500 |
commit | 046d6c563b1c6226bbf0f84e5b2413ad8ab921a1 (patch) | |
tree | ba88e7f89618421bd320f5f55d06b4ad7839938e /drivers/misc | |
parent | dbd2918ec65c35f36bb102c88eafe87be0552f6f (diff) |
x86: uv: XPC receive message reuse triggers invalid BUG_ON()
This was a difficult bug to trip. XPC was in the middle of sending an
acknowledgement for a received message.
In xpc_received_payload_uv():
.
ret = xpc_send_gru_msg(ch->sn.uv.cached_notify_gru_mq_desc, msg,
sizeof(struct xpc_notify_mq_msghdr_uv));
if (ret != xpSuccess)
XPC_DEACTIVATE_PARTITION(&xpc_partitions[ch->partid], ret);
msg->hdr.msg_slot_number += ch->remote_nentries;
at the point in xpc_send_gru_msg() where the hardware has dispatched the
acknowledgement, the remote side is able to reuse the message structure
and send a message with a different slot number. This problem is made
worse by interrupts.
The adjustment of msg_slot_number and the BUG_ON in
xpc_handle_notify_mq_msg_uv() which verifies the msg_slot_number is
consistent are only used for debug purposes. Since a fix for this that
preserves the debug functionality would either have to infringe upon the
payload or allocate another structure just for debug, I decided to remove
it entirely.
Signed-off-by: Robin Holt <holt@sgi.com>
Cc: Jack Steiner <steiner@sgi.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/sgi-xp/xpc_uv.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/misc/sgi-xp/xpc_uv.c b/drivers/misc/sgi-xp/xpc_uv.c index 241ea5f01aaa..d2f4e9121f93 100644 --- a/drivers/misc/sgi-xp/xpc_uv.c +++ b/drivers/misc/sgi-xp/xpc_uv.c | |||
@@ -1428,7 +1428,6 @@ xpc_handle_notify_mq_msg_uv(struct xpc_partition *part, | |||
1428 | msg_slot = ch_uv->recv_msg_slots + | 1428 | msg_slot = ch_uv->recv_msg_slots + |
1429 | (msg->hdr.msg_slot_number % ch->remote_nentries) * ch->entry_size; | 1429 | (msg->hdr.msg_slot_number % ch->remote_nentries) * ch->entry_size; |
1430 | 1430 | ||
1431 | BUG_ON(msg->hdr.msg_slot_number != msg_slot->hdr.msg_slot_number); | ||
1432 | BUG_ON(msg_slot->hdr.size != 0); | 1431 | BUG_ON(msg_slot->hdr.size != 0); |
1433 | 1432 | ||
1434 | memcpy(msg_slot, msg, msg->hdr.size); | 1433 | memcpy(msg_slot, msg, msg->hdr.size); |
@@ -1652,8 +1651,6 @@ xpc_received_payload_uv(struct xpc_channel *ch, void *payload) | |||
1652 | sizeof(struct xpc_notify_mq_msghdr_uv)); | 1651 | sizeof(struct xpc_notify_mq_msghdr_uv)); |
1653 | if (ret != xpSuccess) | 1652 | if (ret != xpSuccess) |
1654 | XPC_DEACTIVATE_PARTITION(&xpc_partitions[ch->partid], ret); | 1653 | XPC_DEACTIVATE_PARTITION(&xpc_partitions[ch->partid], ret); |
1655 | |||
1656 | msg->hdr.msg_slot_number += ch->remote_nentries; | ||
1657 | } | 1654 | } |
1658 | 1655 | ||
1659 | static struct xpc_arch_operations xpc_arch_ops_uv = { | 1656 | static struct xpc_arch_operations xpc_arch_ops_uv = { |