Re: [PATCH v2 2/6] tools/misc: rework xenwatchdogd signal handling

2024-04-11 Thread Leigh Brown
Hi Andrew, On 2024-04-11 13:12, Andrew Cooper wrote: On 29/03/2024 11:10 am, le...@solinno.co.uk wrote: diff --git a/tools/misc/xenwatchdogd.c b/tools/misc/xenwatchdogd.c index 2f7c822d61..35a0df655a 100644 --- a/tools/misc/xenwatchdogd.c +++ b/tools/misc/xenwatchdogd.c @@ -9,9 +9,11 @@

Re: [PATCH v2 2/6] tools/misc: rework xenwatchdogd signal handling

2024-04-11 Thread Andrew Cooper
On 29/03/2024 11:10 am, le...@solinno.co.uk wrote: > diff --git a/tools/misc/xenwatchdogd.c b/tools/misc/xenwatchdogd.c > index 2f7c822d61..35a0df655a 100644 > --- a/tools/misc/xenwatchdogd.c > +++ b/tools/misc/xenwatchdogd.c > @@ -9,9 +9,11 @@ > #include > #include > #include > +#include >

Re: [PATCH v2 2/6] tools/misc: rework xenwatchdogd signal handling

2024-04-09 Thread Anthony PERARD
On Fri, Mar 29, 2024 at 11:10:52AM +, le...@solinno.co.uk wrote: > From: Leigh Brown > > Rework xenwatchdogd signal handling to do the minimum in the signal > handler. This is a very minor enhancement. > > Signed-off-by: Leigh Brown Reviewed-by: Anthony PERARD Thanks, -- Anthony

[PATCH v2 2/6] tools/misc: rework xenwatchdogd signal handling

2024-03-29 Thread leigh
From: Leigh Brown Rework xenwatchdogd signal handling to do the minimum in the signal handler. This is a very minor enhancement. Signed-off-by: Leigh Brown --- tools/misc/xenwatchdogd.c | 20 1 file changed, 12 insertions(+), 8 deletions(-) diff --git