diff options
Diffstat (limited to 'drivers/lguest/core.c')
| -rw-r--r-- | drivers/lguest/core.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c index 5c13e93898f..b5fdcb78a75 100644 --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c @@ -232,6 +232,13 @@ int run_guest(struct lg_cpu *cpu, unsigned long __user *user)  			}  		} +		/* +		 * All long-lived kernel loops need to check with this horrible +		 * thing called the freezer.  If the Host is trying to suspend, +		 * it stops us. +		 */ +		try_to_freeze(); +  		/* Check for signals */  		if (signal_pending(current))  			return -ERESTARTSYS; @@ -246,13 +253,6 @@ int run_guest(struct lg_cpu *cpu, unsigned long __user *user)  			try_deliver_interrupt(cpu, irq, more);  		/* -		 * All long-lived kernel loops need to check with this horrible -		 * thing called the freezer.  If the Host is trying to suspend, -		 * it stops us. -		 */ -		try_to_freeze(); - -		/*  		 * Just make absolutely sure the Guest is still alive.  One of  		 * those hypercalls could have been fatal, for example.  		 */  |