aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDean Nelson <dcn@sgi.com>2007-06-19 07:26:17 -0400
committerTony Luck <tony.luck@intel.com>2007-06-26 16:33:58 -0400
commiteaf6c766446c0faa326b339900f975e6f1f62b01 (patch)
tree5555be98456903eb4401784382c9fdf8e4c50336 /include
parent2e77ff21d225f7676517ac895df2be8ada573f4f (diff)
[IA64] change sh_change_coherence oemcall to use nolock
Change sn_change_coherence's ia64_sal_oemcall to the nolock variety since PROM does the locking for this function internally. Signed-off-by: Dean Nelson <dcn@sgi.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/asm-ia64/sn/sn_sal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-ia64/sn/sn_sal.h b/include/asm-ia64/sn/sn_sal.h
index 291e8ceed6e6..d3566a298fa4 100644
--- a/include/asm-ia64/sn/sn_sal.h
+++ b/include/asm-ia64/sn/sn_sal.h
@@ -696,8 +696,8 @@ static inline int
696sn_change_coherence(u64 *new_domain, u64 *old_domain) 696sn_change_coherence(u64 *new_domain, u64 *old_domain)
697{ 697{
698 struct ia64_sal_retval ret_stuff; 698 struct ia64_sal_retval ret_stuff;
699 ia64_sal_oemcall(&ret_stuff, SN_SAL_COHERENCE, (u64)new_domain, 699 ia64_sal_oemcall_nolock(&ret_stuff, SN_SAL_COHERENCE, (u64)new_domain,
700 (u64)old_domain, 0, 0, 0, 0, 0); 700 (u64)old_domain, 0, 0, 0, 0, 0);
701 return ret_stuff.status; 701 return ret_stuff.status;
702} 702}
703 703