diff options
author | Russ Anderson <(rja@sgi.com)> | 2005-05-16 22:19:00 (GMT) |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-05-17 20:50:10 (GMT) |
commit | 8eac3757158ccd9c6b43f44f228a5762fec33781 (patch) | |
tree | e0d9c92f95c8b004ec8a386b4e9259a0f179bc0b /include | |
parent | bb68c12b40c3c745381d7ce61d7b2e371f157505 (diff) | |
download | linux-8eac3757158ccd9c6b43f44f228a5762fec33781.tar.xz |
[IA64-SGI] Make Altix SAL call to POD reentrant
Change the SAL call for POD mode to be reentrant.
This change is SN specific.
Signed-off-by: Russ Anderson (rja@sgi.com)
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ia64/sn/sn_sal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ia64/sn/sn_sal.h b/include/asm-ia64/sn/sn_sal.h index 56d74ca..94cc539 100644 --- a/include/asm-ia64/sn/sn_sal.h +++ b/include/asm-ia64/sn/sn_sal.h @@ -472,7 +472,7 @@ static inline u64 ia64_sn_pod_mode(void) { struct ia64_sal_retval isrv; - SAL_CALL(isrv, SN_SAL_POD_MODE, 0, 0, 0, 0, 0, 0, 0); + SAL_CALL_REENTRANT(isrv, SN_SAL_POD_MODE, 0, 0, 0, 0, 0, 0, 0); if (isrv.status) return 0; return isrv.v0; |