public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][02] Change srlz.d to srlz.i for ia64_set_psr
@ 2008-01-31 10:28 Zhang, Xiantao
       [not found] ` <42DFA526FC41B1429CE7279EF83C6BDCD31FC5-wq7ZOvIWXbMAbVU2wMM1CrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Zhang, Xiantao @ 2008-01-31 10:28 UTC (permalink / raw)
  To: Avi Kivity, Luck, Tony, Xu, Anthony, Zhang, Xiantao
  Cc: kvm-devel, kvm-ia64-devel, linux-ia64

[-- Attachment #1: Type: text/plain, Size: 1121 bytes --]

From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Thu, 31 Jan 2008 17:46:09 +0800
Subject: [PATCH] IA64: ia64_set_psr may need srlz.i sometimes.

Once psr.ic changes by ia64_set_psr, srlz.i is needed here.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
 arch/ia64/kernel/efi.c       |    1 -
 include/asm-ia64/processor.h |    2 +-
 2 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c
index 242d793..f3823db 100644
--- a/arch/ia64/kernel/efi.c
+++ b/arch/ia64/kernel/efi.c
@@ -405,7 +405,6 @@ efi_map_pal_code (void)
 		 pte_val(pfn_pte(__pa(pal_vaddr) >> PAGE_SHIFT,
PAGE_KERNEL)),
 		 IA64_GRANULE_SHIFT);
 	ia64_set_psr(psr);		/* restore psr */
-	ia64_srlz_i();
 }
 
 void __init
diff --git a/include/asm-ia64/processor.h b/include/asm-ia64/processor.h
index be3b0ae..038642f 100644
--- a/include/asm-ia64/processor.h
+++ b/include/asm-ia64/processor.h
@@ -472,7 +472,7 @@ ia64_set_psr (__u64 psr)
 {
 	ia64_stop();
 	ia64_setreg(_IA64_REG_PSR_L, psr);
-	ia64_srlz_d();
+	ia64_srlz_i();
 }
 
 /*
-- 
1.5.1

[-- Attachment #2: 0002-IA64-ia64_set_psr-may-need-srlz.i-sometimes.patch --]
[-- Type: application/octet-stream, Size: 1154 bytes --]

From 51decd8eb030e4fdf15c14ebe52bbb708a52c43d Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Thu, 31 Jan 2008 17:46:09 +0800
Subject: [PATCH] IA64: ia64_set_psr may need srlz.i sometimes.

Once psr.ic changes by ia64_set_psr, srlz.i is needed here.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
 arch/ia64/kernel/efi.c       |    1 -
 include/asm-ia64/processor.h |    2 +-
 2 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c
index 242d793..f3823db 100644
--- a/arch/ia64/kernel/efi.c
+++ b/arch/ia64/kernel/efi.c
@@ -405,7 +405,6 @@ efi_map_pal_code (void)
 		 pte_val(pfn_pte(__pa(pal_vaddr) >> PAGE_SHIFT, PAGE_KERNEL)),
 		 IA64_GRANULE_SHIFT);
 	ia64_set_psr(psr);		/* restore psr */
-	ia64_srlz_i();
 }
 
 void __init
diff --git a/include/asm-ia64/processor.h b/include/asm-ia64/processor.h
index be3b0ae..038642f 100644
--- a/include/asm-ia64/processor.h
+++ b/include/asm-ia64/processor.h
@@ -472,7 +472,7 @@ ia64_set_psr (__u64 psr)
 {
 	ia64_stop();
 	ia64_setreg(_IA64_REG_PSR_L, psr);
-	ia64_srlz_d();
+	ia64_srlz_i();
 }
 
 /*
-- 
1.5.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [kvm-ia64-devel] [PATCH][02] Change srlz.d to srlz.i foria64_set_psr
       [not found] ` <42DFA526FC41B1429CE7279EF83C6BDCD31FC5-wq7ZOvIWXbMAbVU2wMM1CrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2008-02-01  2:48   ` Akio Takebe
  2008-02-01  3:37     ` Zhang, Xiantao
  0 siblings, 1 reply; 4+ messages in thread
From: Akio Takebe @ 2008-02-01  2:48 UTC (permalink / raw)
  To: Zhang, Xiantao, Avi Kivity, Luck, Tony, Xu, Anthony
  Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	linux-ia64-u79uwXL29TY76Z2rM5mHXA,
	kvm-ia64-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hi, Xiantao

> void __init
>diff --git a/include/asm-ia64/processor.h b/include/asm-ia64/processor.h
>index be3b0ae..038642f 100644
>--- a/include/asm-ia64/processor.h
>+++ b/include/asm-ia64/processor.h
>@@ -472,7 +472,7 @@ ia64_set_psr (__u64 psr)
> {
> 	ia64_stop();
> 	ia64_setreg(_IA64_REG_PSR_L, psr);
>-	ia64_srlz_d();
>+	ia64_srlz_i();
> }
Why do you remove ia64_srlz_d()?
We should need srlz.d if we change PSR bits(e.g. PSR.dt and so on).
Does srlz.i do also date serialization?

Best Regards,

Akio Takebe


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [kvm-ia64-devel] [PATCH][02] Change srlz.d to srlz.i foria64_set_psr
  2008-02-01  2:48   ` [kvm-ia64-devel] [PATCH][02] Change srlz.d to srlz.i foria64_set_psr Akio Takebe
@ 2008-02-01  3:37     ` Zhang, Xiantao
       [not found]       ` <42DFA526FC41B1429CE7279EF83C6BDCD321B8-wq7ZOvIWXbMAbVU2wMM1CrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Zhang, Xiantao @ 2008-02-01  3:37 UTC (permalink / raw)
  To: Akio Takebe, Avi Kivity, Luck, Tony, Xu, Anthony
  Cc: kvm-devel, linux-ia64, kvm-ia64-devel

Akio Takebe wrote:
> Hi, Xiantao
> 
>> void __init
>> diff --git a/include/asm-ia64/processor.h
>> b/include/asm-ia64/processor.h index be3b0ae..038642f 100644 ---
>> a/include/asm-ia64/processor.h +++ b/include/asm-ia64/processor.h
>> @@ -472,7 +472,7 @@ ia64_set_psr (__u64 psr)
>> {
>> 	ia64_stop();
>> 	ia64_setreg(_IA64_REG_PSR_L, psr);
>> -	ia64_srlz_d();
>> +	ia64_srlz_i();
>> }
> Why do you remove ia64_srlz_d()?
> We should need srlz.d if we change PSR bits(e.g. PSR.dt and so on).
> Does srlz.i do also date serialization?
Hi, Akio
Srlz.i  implicitly ensures srlz.d  per SDM.  
Thanks
Xiantao


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [kvm-ia64-devel] [PATCH][02] Change srlz.d to srlz.iforia64_set_psr
       [not found]       ` <42DFA526FC41B1429CE7279EF83C6BDCD321B8-wq7ZOvIWXbMAbVU2wMM1CrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2008-02-01  3:58         ` Akio Takebe
  0 siblings, 0 replies; 4+ messages in thread
From: Akio Takebe @ 2008-02-01  3:58 UTC (permalink / raw)
  To: Zhang, Xiantao, Avi Kivity, Luck, Tony, Xu, Anthony
  Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Akio Takebe,
	linux-ia64-u79uwXL29TY76Z2rM5mHXA,
	kvm-ia64-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hi, Xiantao

>> Why do you remove ia64_srlz_d()?
>> We should need srlz.d if we change PSR bits(e.g. PSR.dt and so on).
>> Does srlz.i do also date serialization?
>Hi, Akio
>Srlz.i  implicitly ensures srlz.d  per SDM.  
OK, thanks.

Best Regards,

Akio Takebe


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-02-01  3:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-31 10:28 [PATCH][02] Change srlz.d to srlz.i for ia64_set_psr Zhang, Xiantao
     [not found] ` <42DFA526FC41B1429CE7279EF83C6BDCD31FC5-wq7ZOvIWXbMAbVU2wMM1CrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2008-02-01  2:48   ` [kvm-ia64-devel] [PATCH][02] Change srlz.d to srlz.i foria64_set_psr Akio Takebe
2008-02-01  3:37     ` Zhang, Xiantao
     [not found]       ` <42DFA526FC41B1429CE7279EF83C6BDCD321B8-wq7ZOvIWXbMAbVU2wMM1CrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2008-02-01  3:58         ` [kvm-ia64-devel] [PATCH][02] Change srlz.d to srlz.iforia64_set_psr Akio Takebe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox