aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/wait.c
diff options
context:
space:
mode:
authorKeir Fraser <keir@xen.org>2011-11-08 19:33:46 +0000
committerKeir Fraser <keir@xen.org>2011-11-08 19:33:46 +0000
commit1186671a0e1e4b3d5242ee4508689f48cee65bdc (patch)
treebd01285bf93685f84c1870e04514edd01f190599 /xen/common/wait.c
parent666578d7016cf17c6c2b6c2ec736155340fb29d4 (diff)
downloadxen-1186671a0e1e4b3d5242ee4508689f48cee65bdc.tar.gz
xen-1186671a0e1e4b3d5242ee4508689f48cee65bdc.tar.bz2
xen-1186671a0e1e4b3d5242ee4508689f48cee65bdc.zip
waitqueue: Double size of x86 shadow stack.
Signed-off-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/common/wait.c')
-rw-r--r--xen/common/wait.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/wait.c b/xen/common/wait.c
index 223974f6bd..a2c7640107 100644
--- a/xen/common/wait.c
+++ b/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
};