Re: [PATCH v3 5/6] arch/x86: move domain_pause_for_debugger() to domain.h

2021-08-24 Thread Jan Beulich
On 18.08.2021 22:29, Bobby Eshleman wrote: > --- a/xen/arch/x86/hvm/svm/svm.c > +++ b/xen/arch/x86/hvm/svm/svm.c > @@ -36,6 +36,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -58,7 +59,6 @@ > #include > #include > #include > -#include >

[PATCH v3 5/6] arch/x86: move domain_pause_for_debugger() to domain.h

2021-08-18 Thread Bobby Eshleman
domain_pause_for_debugger() was previously in debugger.h. This commit moves it to domain.h because its implementation is in domain.c. Signed-off-by: Bobby Eshleman --- Changes in v3: - domain_pause_for_debugger() is now moved into debugger.h, not a new file debugger.c xen/arch/x86/hvm/svm/sv