[Patch v2 1/2] lustre: Parantheses added for Macro argument to avoid precedence issues

Rishiraj Manwatkar manwatkar at outlook.com
Sat Apr 15 11:25:00 UTC 2017


From: RishirajAM <manwatkar at outlook.com>

Parantheses are added for Macro argument, to avoid precedence issues.

Signed-off-by: Rishiraj Manwatkar <manwatkar at outlook.com>
---
 drivers/staging/lustre/lustre/obdclass/cl_io.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/lustre/lustre/obdclass/cl_io.c b/drivers/staging/lustre/lustre/obdclass/cl_io.c
index ee7d677..0997254 100755
--- a/drivers/staging/lustre/lustre/obdclass/cl_io.c
+++ b/drivers/staging/lustre/lustre/obdclass/cl_io.c
@@ -52,9 +52,9 @@
  */
 
 #define cl_io_for_each(slice, io) \
-	list_for_each_entry((slice), &io->ci_layers, cis_linkage)
+	list_for_each_entry((slice), &(io)->ci_layers, cis_linkage)
 #define cl_io_for_each_reverse(slice, io)		 \
-	list_for_each_entry_reverse((slice), &io->ci_layers, cis_linkage)
+	list_for_each_entry_reverse((slice), &(io)->ci_layers, cis_linkage)
 
 static inline int cl_io_type_is_valid(enum cl_io_type type)
 {
-- 
2.1.4



More information about the devel mailing list