All of lore.kernel.org
 help / color / mirror / Atom feed
* C/S 19400 breaks 32-bit build
       [not found] <200903191710.n2JHAOB1017068@xenbits.xensource.com>
@ 2009-03-20  4:16 ` Cui, Dexuan
  2009-03-20  6:46   ` [PATCH] fix 19400 was " Lu, Guanqun
  0 siblings, 1 reply; 2+ messages in thread
From: Cui, Dexuan @ 2009-03-20  4:16 UTC (permalink / raw)
  To: Keir Fraser, xen-devel

e.g., 
void restore_rest_processor_state(void)
{
...
#else /* !defined(CONFIG_X86_64) */
    if ( supervisor_mode_kernel && cpu_has_sep )
        wrmsr(MSR_IA32_SYSENTER_ESP, &t->esp1, 0);       ========>  t is not defined previously.
#endif

Thanks,
-- Dexuan

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

* [PATCH] fix 19400 was RE: C/S 19400 breaks 32-bit build
  2009-03-20  4:16 ` C/S 19400 breaks 32-bit build Cui, Dexuan
@ 2009-03-20  6:46   ` Lu, Guanqun
  0 siblings, 0 replies; 2+ messages in thread
From: Lu, Guanqun @ 2009-03-20  6:46 UTC (permalink / raw)
  To: Cui, Dexuan, Keir Fraser, xen-devel

diff -r e1562a36094e xen/arch/x86/acpi/suspend.c
--- a/xen/arch/x86/acpi/suspend.c   Thu Mar 19 17:04:06 2009 +0000
+++ b/xen/arch/x86/acpi/suspend.c   Fri Mar 20 13:27:17 2009 +0800
@@ -32,6 +32,9 @@ void restore_rest_processor_state(void)
 void restore_rest_processor_state(void)
 {
    struct vcpu *v = current;
+#if !defined(CONFIG_X86_64)
+    struct tss_struct *t = &init_tss[smp_processor_id()];
+#endif

    load_TR();




On Friday, March 20, 2009 12:17 PM Cui, Dexuan wrote:

> e.g.,
> void restore_rest_processor_state(void)
> {
> ...
> #else /* !defined(CONFIG_X86_64) */
>     if ( supervisor_mode_kernel && cpu_has_sep )
>         wrmsr(MSR_IA32_SYSENTER_ESP, &t->esp1, 0);       ========>  t
> is not defined previously. #endif
> 
> Thanks,
> -- Dexuan
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel



-- 
Guanqun

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

end of thread, other threads:[~2009-03-20  6:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200903191710.n2JHAOB1017068@xenbits.xensource.com>
2009-03-20  4:16 ` C/S 19400 breaks 32-bit build Cui, Dexuan
2009-03-20  6:46   ` [PATCH] fix 19400 was " Lu, Guanqun

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.