28 lines
734 B
Diff
28 lines
734 B
Diff
|
changeset: 24104:4daa4ad90f12
|
||
|
user: Keir Fraser <keir@xen.org>
|
||
|
date: Tue Nov 08 19:33:46 2011 +0000
|
||
|
files: xen/common/wait.c
|
||
|
description:
|
||
|
waitqueue: Double size of x86 shadow stack.
|
||
|
|
||
|
Signed-off-by: Keir Fraser <keir@xen.org>
|
||
|
|
||
|
|
||
|
---
|
||
|
xen/common/wait.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
Index: xen-4.1.2-testing/xen/common/wait.c
|
||
|
===================================================================
|
||
|
--- xen-4.1.2-testing.orig/xen/common/wait.c
|
||
|
+++ xen-4.1.2-testing/xen/common/wait.c
|
||
|
@@ -33,7 +33,7 @@ struct waitqueue_vcpu {
|
||
|
* hypervisor context before sleeping (descheduling), setjmp/longjmp-style.
|
||
|
*/
|
||
|
void *esp;
|
||
|
- char stack[1500];
|
||
|
+ char stack[3000];
|
||
|
#endif
|
||
|
};
|
||
|
|