From: Mike Habeck <habeck@sgi.com>
To: linux-ia64@vger.kernel.org
Subject: [PATCH] fix SGI Altix tioce_bus_fixup() bug
Date: Mon, 19 Jun 2006 20:38:10 +0000 [thread overview]
Message-ID: <20060619203810.15993.12349.sendpatchset@attica.americas.sgi.com> (raw)
The following patch fixes a bug in the SGI Altix tioce_bus_fixup()
code. ce_dre_comp_err_addr needs to be zero'd out not ~0ULL. As
a result completion errors weren't being captured.
This patch is based off the aegl/linux-2.6.git tree
Signed-off-by: Mike Habeck <habeck@sgi.com>
Index: linux-2.6/arch/ia64/sn/pci/tioce_provider.c
=================================--- linux-2.6.orig/arch/ia64/sn/pci/tioce_provider.c 2006-06-19 09:48:04.000000000 -0500
+++ linux-2.6/arch/ia64/sn/pci/tioce_provider.c 2006-06-19 10:21:36.677454591 -0500
@@ -3,7 +3,7 @@
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
- * Copyright (C) 2003-2005 Silicon Graphics, Inc. All Rights Reserved.
+ * Copyright (C) 2003-2006 Silicon Graphics, Inc. All Rights Reserved.
*/
#include <linux/types.h>
@@ -1002,7 +1002,7 @@
tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_adm_int_status_alias, ~0ULL);
tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_adm_error_summary_alias,
~0ULL);
- tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_dre_comp_err_addr, ~0ULL);
+ tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_dre_comp_err_addr, 0ULL);
if (request_irq(SGI_PCIASIC_ERROR,
tioce_error_intr_handler,
reply other threads:[~2006-06-19 20:38 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20060619203810.15993.12349.sendpatchset@attica.americas.sgi.com \
--to=habeck@sgi.com \
--cc=linux-ia64@vger.kernel.org \
/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