Displaying 3 results from an estimated 3 matches for "callbacktype_sysenter".
2007 Aug 08
2
[PATCH] x86-64: syscall/sysenter support for 32-bit apps
...===
--- 2007-08-08.orig/xen/arch/x86/x86_32/traps.c	2007-08-06 15:08:41.000000000 +0200
+++ 2007-08-08/xen/arch/x86/x86_32/traps.c	2007-08-08 11:37:08.000000000 +0200
@@ -329,12 +329,19 @@ static long register_guest_callback(stru
         break;
 
 #ifdef CONFIG_X86_SUPERVISOR_MODE_KERNEL
-    case CALLBACKTYPE_sysenter:
+    case CALLBACKTYPE_sysenter_deprecated:
         if ( ! cpu_has_sep )
             ret = -EINVAL;
         else if ( on_each_cpu(do_update_sysenter, ®->address, 1, 1) != 0 )
             ret = -EIO;
         break;
+
+    case CALLBACKTYPE_sysenter:
+        if ( ! cpu_has_sep )
+...
2008 Mar 05
51
[PATCH 00/50] ia64/xen take 3: ia64/xen domU paravirtualization
Hi. This patchset implements xen/ia64 domU support.
Qing He and Eddie Dong also has been woring on pv_ops so that
I want to discuss before going further and avoid duplicated work.
I suppose that Eddie will also post his own patch. So reviewing both
patches, we can reach to better pv_ops interface.
- I didn't changed the ia64 intrinsic paravirtulization abi from
  the last post. Presumably it
2008 Mar 05
51
[PATCH 00/50] ia64/xen take 3: ia64/xen domU paravirtualization
Hi. This patchset implements xen/ia64 domU support.
Qing He and Eddie Dong also has been woring on pv_ops so that
I want to discuss before going further and avoid duplicated work.
I suppose that Eddie will also post his own patch. So reviewing both
patches, we can reach to better pv_ops interface.
- I didn't changed the ia64 intrinsic paravirtulization abi from
  the last post. Presumably it