[PATCH 2/3] staging: lustre: fix inappropriate enums declarations.

2014-09-09 Thread Hugues Morisset
From: Hugues Morisset Signed-off-by: Hugues Morisset --- drivers/staging/lustre/lustre/include/obd.h | 10 +++--- drivers/staging/lustre/lustre/lmv/lmv_obd.c | 2 +- drivers/staging/lustre/lustre/lmv/lproc_lmv.c | 6 +++--- 3 files changed, 7 insertions(+), 11 deletions(-) diff

[PATCH 3/3] staging: lustre: fix coding style of function's pointer

2014-09-09 Thread Hugues Morisset
From: Hugues Morisset Signed-off-by: Hugues Morisset --- drivers/staging/lustre/lustre/include/obd.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/lustre/lustre/include/obd.h b/drivers/staging/lustre/lustre/include/obd.h index 7f2b8cb..318aec9

[PATCH 1/3] staging: lustre: fix coding style on long lines

2014-09-09 Thread Hugues Morisset
From: Hugues Morisset Signed-off-by: Hugues Morisset --- drivers/staging/lustre/lustre/include/obd.h | 34 +++-- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/drivers/staging/lustre/lustre/include/obd.h b/drivers/staging/lustre/lustre/include/obd.h

[PATCH 0/3] fix coding style on lustre

2014-09-09 Thread Hugues Morisset
From: Hugues Morisset fix coding style issues including: * Better alignement of some structures * Fonction pointer with wrong style * Remove enums declarations * A missing empty line Hugues Morisset (3): staging: lustre: fix coding style on long lines and a missing empty line

[PATCH 4/4] staging: lustre: Fix potential buffer underflow

2014-09-08 Thread Hugues
Fix potential buffer underflow When the string 'name' start with a '-' ptr == name and so --ptr will underflow, this patch corrected this by checking ptr before decrementing. >From 5786040323bd1dc3149fb4afbea9f01e2bf4cfdf Mon Sep 17 00:00:00 2001 From: Hugues Morisset Date

Re: [PATCH 3/4] staging: lustre: fix coding style issues

2014-09-08 Thread Hugues
On 09/09/2014 12:07 AM, Hugues wrote: > Fix coding style issues: > * Remove extra space in function's pointers > Sorry, I forgot the attachment. >From d4ec8f9a9452102f0b044758bf407782665baa68 Mon Sep 17 00:00:00 2001 From: Hugues Morisset Date: Mon, 8 Sep 2014 21:39:27 +0200 Su

[PATCH 3/4] staging: lustre: fix coding style issues

2014-09-08 Thread Hugues
Fix coding style issues: * Remove extra space in function's pointers ___ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

[PATCH 2/4] staging: lustre: fix coding style issues

2014-09-08 Thread Hugues
Fix coding style issues: * Remove inappropriate typedefs >From a2c6d82141849cd102b5805941351a6b20df0e8a Mon Sep 17 00:00:00 2001 From: Hugues Morisset Date: Mon, 8 Sep 2014 21:36:10 +0200 Subject: [PATCH 2/4] staging: lustre: fix coding style issues Signed-off-by: Hugues Morisset --- driv

[PATCH 1/4] staging: lustre: fix coding style issues

2014-09-08 Thread Hugues
Fix coding style issues: * limit the length of changed lines to 80 columns. >From a244d32aa34d0b13ac40dd014b88d0ff5ed10817 Mon Sep 17 00:00:00 2001 From: Hugues Morisset Date: Mon, 8 Sep 2014 21:23:28 +0200 Subject: [PATCH 1/4] staging: lustre: fix coding style issues Signed-off-by: Hug