Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75258
b: refs/heads/master
c: 4ca8ad7
h: refs/heads/master
v: v3
  • Loading branch information
Russ Anderson authored and Tony Luck committed Jan 3, 2008
1 parent 2f3310a commit a72f89b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 304b46996ca1a989fe0fe99831ed38c79e855245
refs/heads/master: 4ca8ad7e4c38cd7f32b11e60418d06fa912a1a37
6 changes: 4 additions & 2 deletions trunk/include/asm-ia64/sn/xpc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a72f89b

Please sign in to comment.