diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-06-13 08:27:10 +0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-06-12 16:57:11 +0400 |
commit | 5dac051bc6030963181b69faddd9e0ad04f85fa8 (patch) | |
tree | 4a0456e1d971bbe9f68f4ac13d31716c12fbb618 /drivers/lguest/lg.h | |
parent | 659a0e6633567246edcb7bd400c7e2bece9237d9 (diff) | |
download | linux-5dac051bc6030963181b69faddd9e0ad04f85fa8.tar.xz |
lguest: remove obsolete LHREQ_BREAK call
We no longer need an efficient mechanism to force the Guest back into
host userspace, as each device is serviced without bothering the main
Guest process (aka. the Launcher).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest/lg.h')
-rw-r--r-- | drivers/lguest/lg.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/lguest/lg.h b/drivers/lguest/lg.h index 32fefdc6ad3e..d4e8979735cb 100644 --- a/drivers/lguest/lg.h +++ b/drivers/lguest/lg.h @@ -71,9 +71,7 @@ struct lg_cpu { /* Virtual clock device */ struct hrtimer hrt; - /* Do we need to stop what we're doing and return to userspace? */ - int break_out; - wait_queue_head_t break_wq; + /* Did the Guest tell us to halt? */ int halted; /* Pending virtual interrupts */ |