Commit 4ca8ad7e authored by Russ Anderson's avatar Russ Anderson Committed by Tony Luck

[IA64] 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") applied
as commit: 64135fa9

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)
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 304b4699
...@@ -1211,11 +1211,13 @@ xpc_IPI_init(int index) ...@@ -1211,11 +1211,13 @@ xpc_IPI_init(int index)
static inline enum xpc_retval static inline enum xpc_retval
xpc_map_bte_errors(bte_result_t error) xpc_map_bte_errors(bte_result_t error)
{ {
if (error == BTE_SUCCESS)
return xpcSuccess;
if (is_shub2()) { if (is_shub2()) {
if (BTE_VALID_SH2_ERROR(error)) if (BTE_VALID_SH2_ERROR(error))
return xpcBteSh2Start + error; return xpcBteSh2Start + error;
else return xpcBteUnmappedError;
return xpcBteUnmappedError;
} }
switch (error) { switch (error) {
case BTE_SUCCESS: return xpcSuccess; case BTE_SUCCESS: return xpcSuccess;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment