[PATCH] staging: net: core: skbuff.c: Added do-while pair for complex macros

2015-11-26 Thread Jitendra Kumar Khasdev
This patch is to file skbuff.c that fixes up following error, reported by checkpatch.pl tool, 1. ERROR: Macros with multiple statements should be enclosed in a do - while loop. Signed-off-by: Jitendra Kumar Khasdev --- net/core/skbuff.c | 12 +++- 1 file changed, 7 insertions(+), 5 d

Re: [PATCH] staging: net: core: skbuff.c: Added do-while pair for complex macros

2015-11-26 Thread Joe Perches
On Thu, 2015-11-26 at 22:06 +0530, Jitendra Kumar Khasdev wrote: > This patch is to file skbuff.c that fixes up following error, > reported by checkpatch.pl tool, Your subject title is not correct. This is not a staging patch. > 1. ERROR: Macros with multiple statements should be enclosed >in

Re: [PATCH] staging: net: core: skbuff.c: Added do-while pair for complex macros

2015-11-26 Thread David Miller
From: Jitendra Kumar Khasdev Date: Thu, 26 Nov 2015 22:06:03 +0530 > This patch is to file skbuff.c that fixes up following error, > reported by checkpatch.pl tool, > > 1. ERROR: Macros with multiple statements should be enclosed >in a do - while loop. > > Signed-off-by: Jitendra Kumar Khas