public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] Update Altix BTE error return status patch
@ 2007-12-20 23:46 Russ Anderson
  0 siblings, 0 replies; only message in thread
From: Russ Anderson @ 2007-12-20 23:46 UTC (permalink / raw)
  To: linux-ia64

[patch] Update Altix BTE error return status patch

I neglected to send Tony the most recent version of the 
patch ("Fix Altix BTE error return status").

This patch gets it up to date.  Without this patch 
on shub2, if there is no error xpcBteUnmappedError is 
returned instead of xpcSuccess.

Signed-off-by: Russ Anderson (rja@sgi.com)

---
 include/asm-ia64/sn/xpc.h |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Index: test/include/asm-ia64/sn/xpc.h
=================================--- test.orig/include/asm-ia64/sn/xpc.h	2007-12-20 10:20:44.000000000 -0600
+++ test/include/asm-ia64/sn/xpc.h	2007-12-20 16:41:23.283386520 -0600
@@ -1211,11 +1211,13 @@ xpc_IPI_init(int index)
 static inline enum xpc_retval
 xpc_map_bte_errors(bte_result_t error)
 {
+	if (error = BTE_SUCCESS)
+		return xpcSuccess;
+
 	if (is_shub2()) {
 		if (BTE_VALID_SH2_ERROR(error))
 			return xpcBteSh2Start + error;
-		else
-			return xpcBteUnmappedError;
+		return xpcBteUnmappedError;
 	}
 	switch (error) {
 	case BTE_SUCCESS:	return xpcSuccess;
-- 
Russ Anderson, OS RAS/Partitioning Project Lead  
SGI - Silicon Graphics Inc          rja@sgi.com

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-12-20 23:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-20 23:46 [patch] Update Altix BTE error return status patch Russ Anderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox