34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
Index: xen-3.3.1-testing/unmodified_drivers/linux-2.6/platform-pci/platform-compat.c
|
|
===================================================================
|
|
--- xen-3.3.1-testing.orig/unmodified_drivers/linux-2.6/platform-pci/platform-compat.c
|
|
+++ xen-3.3.1-testing/unmodified_drivers/linux-2.6/platform-pci/platform-compat.c
|
|
@@ -14,7 +14,11 @@ EXPORT_SYMBOL(system_state);
|
|
|
|
void ctrl_alt_del(void)
|
|
{
|
|
- kill_proc(1, SIGINT, 1); /* interrupt init */
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27)
|
|
+ kill_proc(1, SIGINT, 1);
|
|
+#else
|
|
+ kill_pid(cad_pid, SIGINT, 1);
|
|
+#endif
|
|
}
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,8)
|
|
Index: xen-3.3.1-testing/unmodified_drivers/linux-2.6/platform-pci/machine_reboot.c
|
|
===================================================================
|
|
--- xen-3.3.1-testing.orig/unmodified_drivers/linux-2.6/platform-pci/machine_reboot.c
|
|
+++ xen-3.3.1-testing/unmodified_drivers/linux-2.6/platform-pci/machine_reboot.c
|
|
@@ -34,7 +34,11 @@ static void ap_suspend(void *_info)
|
|
atomic_dec(&info->nr_spinning);
|
|
}
|
|
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27)
|
|
#define initiate_ap_suspend(i) smp_call_function(ap_suspend, i, 0, 0)
|
|
+#else
|
|
+#define initiate_ap_suspend(i) smp_call_function(ap_suspend, i, 0)
|
|
+#endif
|
|
|
|
#else /* !defined(CONFIG_SMP) */
|
|
|