aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRuss Anderson <(rja@sgi.com)>2005-05-16 15:19:00 -0700
committerTony Luck <tony.luck@intel.com>2005-05-17 13:50:10 -0700
commit8eac3757158ccd9c6b43f44f228a5762fec33781 (patch)
treee0d9c92f95c8b004ec8a386b4e9259a0f179bc0b /include
parentbb68c12b40c3c745381d7ce61d7b2e371f157505 (diff)
downloadlinux-8eac3757158ccd9c6b43f44f228a5762fec33781.tar.gz
[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.h2
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 56d74ca76b5d0b..94cc5392533a1c 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;