On Tuesday 04 March 2008 10:15:47 Rusty Russell wrote: > On Sunday 10 February 2008 02:53:17 Eugene Teo wrote: > > If req is LHREQ_INITIALIZE, and the guest has been initialized before > > (unlikely), it will attempt to access cpu->tsk even though cpu is not yet > > initialized. > > > > Signed-off-by: Eugene Teo <[EMAIL PROTECTED]>
Thanks Eugene, I've applied this with some wrapping of the comments and removal of the now-redundant lg != NULL tests: > > + /* Once the Guest is dead, all you can do is read() why it > > died. */ > > + if (lg && lg->dead) > > + return -ENOENT; > > > > - /* If you're not the task which owns the Guest, you can only break */ > > - if (lg && current != cpu->tsk && req != LHREQ_BREAK) > > - return -EPERM; > > + /* If you're not the task which owns the Guest, you can only > > break */ > > + if (lg && current != cpu->tsk && req != LHREQ_BREAK) > > + return -EPERM; > > + } Cheers, Rusty. _______________________________________________ Lguest mailing list [email protected] https://ozlabs.org/mailman/listinfo/lguest
