All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH] staging: lustre: Fixed the parenthesis
@ 2016-02-15  3:37 ` Shalin Mehta
  0 siblings, 0 replies; 12+ messages in thread
From: Shalin Mehta @ 2016-02-15  3:37 UTC (permalink / raw)
  To: oleg.drokin, andreas.dilger, kernel-janitors
  Cc: lustre-devel, devel, linux-kernel, Shalin Mehta

The parentehsis are fixed in the macro for the ldlm lock to set and
clear the flags.

Signed-off-by: Shalin Mehta <shalinmehta85@gmail.com>
---
 drivers/staging/lustre/lustre/include/lustre_dlm_flags.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/lustre/lustre/include/lustre_dlm_flags.h b/drivers/staging/lustre/lustre/include/lustre_dlm_flags.h
index 0d3ed87..4f9e9ad 100644
--- a/drivers/staging/lustre/lustre/include/lustre_dlm_flags.h
+++ b/drivers/staging/lustre/lustre/include/lustre_dlm_flags.h
@@ -365,10 +365,10 @@
 #define LDLM_TEST_FLAG(_l, _b)        (((_l)->l_flags & (_b)) != 0)
 
 /** set a ldlm_lock flag bit */
-#define LDLM_SET_FLAG(_l, _b)         (((_l)->l_flags |= (_b))
+#define LDLM_SET_FLAG(_l, _b)         ((_l)->l_flags |= (_b))
 
 /** clear a ldlm_lock flag bit */
-#define LDLM_CLEAR_FLAG(_l, _b)       (((_l)->l_flags &= ~(_b))
+#define LDLM_CLEAR_FLAG(_l, _b)       ((_l)->l_flags &= ~(_b))
 
 /** Mask of flags inherited from parent lock when doing intents. */
 #define LDLM_INHERIT_FLAGS            LDLM_FL_INHERIT_MASK
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2016-02-19 10:22 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-15  3:37 [lustre-devel] [PATCH] staging: lustre: Fixed the parenthesis Shalin Mehta
2016-02-15  3:37 ` Shalin Mehta
2016-02-16  2:28 ` [lustre-devel] " Greg KH
2016-02-16  2:28   ` Greg KH
2016-02-16  2:41   ` [lustre-devel] " Drokin, Oleg
2016-02-16  2:41     ` Drokin, Oleg
2016-02-16  2:51 ` [lustre-devel] " Drokin, Oleg
2016-02-16  2:51   ` Drokin, Oleg
2016-02-17  6:39   ` shalin mehta
2016-02-17  6:39     ` shalin mehta
2016-02-19 10:22     ` Dan Carpenter
2016-02-19 10:22       ` Dan Carpenter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.