diff options
author | Jack Morgenstein <jackm@dev.mellanox.co.il> | 2012-05-10 16:28:07 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2012-05-18 20:16:11 -0400 |
commit | 02daaf2741e74758a119768ca80cdf71c994ebd3 (patch) | |
tree | cebe32331cf5b6187dcab98b7269c11802299088 /include/rdma/ib_mad.h | |
parent | c4870eb874ac16dccef40e1bc7a002c7e9156adc (diff) |
IB/core: Fix IB_SA_COMP_MASK macro
It needs parentheses around the argument, so that it can be used with
complex arguments (e.g., "n+5").
Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'include/rdma/ib_mad.h')
-rw-r--r-- | include/rdma/ib_mad.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rdma/ib_mad.h b/include/rdma/ib_mad.h index b513f57e1725..3d81b90cc315 100644 --- a/include/rdma/ib_mad.h +++ b/include/rdma/ib_mad.h | |||
@@ -160,7 +160,7 @@ struct ib_rmpp_hdr { | |||
160 | 160 | ||
161 | typedef u64 __bitwise ib_sa_comp_mask; | 161 | typedef u64 __bitwise ib_sa_comp_mask; |
162 | 162 | ||
163 | #define IB_SA_COMP_MASK(n) ((__force ib_sa_comp_mask) cpu_to_be64(1ull << n)) | 163 | #define IB_SA_COMP_MASK(n) ((__force ib_sa_comp_mask) cpu_to_be64(1ull << (n))) |
164 | 164 | ||
165 | /* | 165 | /* |
166 | * ib_sa_hdr and ib_sa_mad structures must be packed because they have | 166 | * ib_sa_hdr and ib_sa_mad structures must be packed because they have |