diff options
author | Dean Nelson <dcn@sgi.com> | 2005-12-22 15:32:56 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-01-13 13:16:36 -0500 |
commit | 246c7e33d51afe99890b2caab7ad482c0296d5ba (patch) | |
tree | 20d96a5182dd5971d9d51d6626cf02d4a1c19c85 /include/asm-ia64 | |
parent | 7ae69d2aa4ed3ee8cef18a072346366f019d6a4a (diff) |
[IA64-SGI] ensure XPC disengage request is processed
This patch fixes a problem in XPC disengage processing whereby it was not
seeing the request to disengage from a remote partition, so the disengage
wasn't happening. The disengagement is suppose to transpire during the time
a XPC channel is disconnecting, and should be completed before the channel
is declared to be disconnected.
Signed-off-by: Dean Nelson <dcn@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/asm-ia64')
-rw-r--r-- | include/asm-ia64/sn/xp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-ia64/sn/xp.h b/include/asm-ia64/sn/xp.h index 49faf8f26430..203945ae034e 100644 --- a/include/asm-ia64/sn/xp.h +++ b/include/asm-ia64/sn/xp.h | |||
@@ -227,7 +227,9 @@ enum xpc_retval { | |||
227 | 227 | ||
228 | xpcOpenCloseError, /* 50: channel open/close protocol error */ | 228 | xpcOpenCloseError, /* 50: channel open/close protocol error */ |
229 | 229 | ||
230 | xpcUnknownReason /* 51: unknown reason -- must be last in list */ | 230 | xpcDisconnected, /* 51: channel disconnected (closed) */ |
231 | |||
232 | xpcUnknownReason /* 52: unknown reason -- must be last in list */ | ||
231 | }; | 233 | }; |
232 | 234 | ||
233 | 235 | ||