Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a37f7a6 authored by Shalin Mehta's avatar Shalin Mehta Committed by Greg Kroah-Hartman
Browse files

staging: lustre: Fixed the parenthesis



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

Signed-off-by: default avatarShalin Mehta <shalinmehta85@gmail.com>
Acked-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ae0246da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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