Re: [Xen-devel] Dangling whitespaces in xen code

2018-08-30 Thread Jan Beulich
>>> On 29.08.18 at 19:09, wrote: > On 29/08/18 18:01, Volodymyr Babchuk wrote: >> Hi Andrew, >> >> On 29.08.18 19:22, Andrew Cooper wrote: >>> On 29/08/18 17:11, Volodymyr Babchuk wrote: Hello all, During xen hacking I often encounter white spaces at EOLs. It is quite annoying

Re: [Xen-devel] Dangling whitespaces in xen code

2018-08-29 Thread Andrew Cooper
On 29/08/18 18:01, Volodymyr Babchuk wrote: > Hi Andrew, > > On 29.08.18 19:22, Andrew Cooper wrote: >> On 29/08/18 17:11, Volodymyr Babchuk wrote: >>> Hello all, >>> >>> During xen hacking I often encounter white spaces at EOLs. It is quite >>> annoying to see red marker in, say, xen/arch/arm/domc

Re: [Xen-devel] Dangling whitespaces in xen code

2018-08-29 Thread Volodymyr Babchuk
Hi Andrew, On 29.08.18 19:22, Andrew Cooper wrote: On 29/08/18 17:11, Volodymyr Babchuk wrote: Hello all, During xen hacking I often encounter white spaces at EOLs. It is quite annoying to see red marker in, say, xen/arch/arm/domctl.c:25 I used sed to create patch that removes all such whites

Re: [Xen-devel] Dangling whitespaces in xen code

2018-08-29 Thread Andrew Cooper
On 29/08/18 17:11, Volodymyr Babchuk wrote: > Hello all, > > During xen hacking I often encounter white spaces at EOLs. It is quite > annoying to see red marker in, say, xen/arch/arm/domctl.c:25 > > I used sed to create patch that removes all such whitespaces. Command > is simple: > > # find xen -n

[Xen-devel] Dangling whitespaces in xen code

2018-08-29 Thread Volodymyr Babchuk
Hello all, During xen hacking I often encounter white spaces at EOLs. It is quite annoying to see red marker in, say, xen/arch/arm/domctl.c:25 I used sed to create patch that removes all such whitespaces. Command is simple: # find xen -name "*.[ch]" | xargs sed -i "s/[[:space:]]*$//g" Prob