[Lguest] Implement Functions in boot.c

Rusty Russell rusty at rustcorp.com.au
Wed Jan 7 13:01:59 AEDT 2015


nick <xerofoify at gmail.com> writes:
> Greetings Rusty,
> I am wondering why we haven't implementing the below functions:
>  /* Let's just say, I wouldn't do debugging under a Guest. */
>  static unsigned long lguest_get_debugreg(int regno)
> {
>          /* FIXME: Implement */
>          return 0;
> }
>
>  static void lguest_set_debugreg(int regno, unsigned long value)
> {
>          /* FIXME: Implement */
> }
> Seems to me that this are needed for various areas in the lguest subsystem and should
> be implemented for debugging ease of use in the lguest subsystem.

Well, normal use of gdb works.  It can't use hardware watchpoints,
though.

To fix this, hypercalls would have to be added to manipulate the debug
registers, and these registers would have to be saved and restored in
the world switcher code.

Patches welcome!
Rusty.


More information about the Lguest mailing list