Re: [PATCH v4 09/11] xen/arm: smmuv3: Use fallthrough pseudo-keyword

2021-01-18 Thread Rahul Singh
Hello Julien, > On 15 Jan 2021, at 12:18 pm, Julien Grall wrote: > > Hi Rahul, > > On 08/01/2021 14:46, Rahul Singh wrote: >> Merge the patch from linux to use fallthrough pseudo-keyword. > > Please add more information about the patch you are backporting. Is it a > clean backport? Ok . I wi

Re: [PATCH v4 09/11] xen/arm: smmuv3: Use fallthrough pseudo-keyword

2021-01-15 Thread Julien Grall
Hi Rahul, On 08/01/2021 14:46, Rahul Singh wrote: Merge the patch from linux to use fallthrough pseudo-keyword. Please add more information about the patch you are backporting. Is it a clean backport? Replace the existing /* fall through */ comments and its variants with the new pseudo-ke

Re: [PATCH v4 09/11] xen/arm: smmuv3: Use fallthrough pseudo-keyword

2021-01-12 Thread Bertrand Marquis
> On 8 Jan 2021, at 14:46, Rahul Singh wrote: > > Merge the patch from linux to use fallthrough pseudo-keyword. > > Replace the existing /* fall through */ comments and its variants with > the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary > fall-through markings when it is

Re: [PATCH v4 09/11] xen/arm: smmuv3: Use fallthrough pseudo-keyword

2021-01-09 Thread Rahul Singh
Hello Stefano, Thanks for reviewing the series. > On 9 Jan 2021, at 1:44 am, Stefano Stabellini wrote: > > On Fri, 8 Jan 2021, Rahul Singh wrote: >> Merge the patch from linux to use fallthrough pseudo-keyword. >> >> Replace the existing /* fall through */ comments and its variants with >> the

Re: [PATCH v4 09/11] xen/arm: smmuv3: Use fallthrough pseudo-keyword

2021-01-08 Thread Stefano Stabellini
On Fri, 8 Jan 2021, Rahul Singh wrote: > Merge the patch from linux to use fallthrough pseudo-keyword. > > Replace the existing /* fall through */ comments and its variants with > the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary > fall-through markings when it is the case. >

[PATCH v4 09/11] xen/arm: smmuv3: Use fallthrough pseudo-keyword

2021-01-08 Thread Rahul Singh
Merge the patch from linux to use fallthrough pseudo-keyword. Replace the existing /* fall through */ comments and its variants with the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary fall-through markings when it is the case. Signed-off-by: Rahul Singh --- Changes in V4: - T