diff options
author | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2017-09-02 09:49:06 -0400 |
---|---|---|
committer | Kaleb KEITHLEY <kkeithle@redhat.com> | 2017-09-20 09:40:29 +0000 |
commit | 6b30347f65c9590fa1b636e4aed0471dc8eeff07 (patch) | |
tree | 2aed8585cafe8fb17b19c1eed029d96c8fdbe34e /xlators/cluster | |
parent | 60ff231644862c0d9351352febdda7b2dfdde994 (diff) |
cluster/ec: fix for BAD_SHIFT, follow-up patch
Address comments to https://review.gluster.org/18067, (Change-Id
I86e15d12939c610c99f5f96c551bb870df20f4b4)
Which was posted as an RFC as an example of a possible alternative
fix to https://review.gluster.org/17860 (Change-Id
I28a3bdd4a357526dba0cf84c262919c05cfa173e)
An alternative fix that preserved the unsignedness of the indexes
throughout, obviating the need to check its value before using it to
shift. (shift by negative number is undefined, as is shift by more
bits than in the type.)
BUG: 1474309
Change-Id: I46fe9cec140d3397463780748f6876251acb06dd
Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'xlators/cluster')
-rw-r--r-- | xlators/cluster/ec/src/ec-common.c | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/xlators/cluster/ec/src/ec-common.c b/xlators/cluster/ec/src/ec-common.c index a03bbce367b..f6715eb1374 100644 --- a/xlators/cluster/ec/src/ec-common.c +++ b/xlators/cluster/ec/src/ec-common.c @@ -21,6 +21,8 @@ #include "ec.h" #include "ec-messages.h" +#define EC_INVALID_INDEX UINT32_MAX + uint32_t ec_select_first_by_read_policy (ec_t *ec, ec_fop_data_t *fop) { @@ -40,13 +42,14 @@ ec_select_first_by_read_policy (ec_t *ec, ec_fop_data_t *fop) return 0; } -int32_t ec_child_valid(ec_t * ec, ec_fop_data_t * fop, int32_t idx) +static +gf_boolean_t ec_child_valid(ec_t * ec, ec_fop_data_t * fop, uint32_t idx) { - return (idx >= 0 && idx < ec->nodes) && - (((fop->remaining >> idx) & 1) == 1); + return (idx < ec->nodes) && (((fop->remaining >> idx) & 1) == 1); } -int32_t ec_child_next(ec_t * ec, ec_fop_data_t * fop, uint32_t idx) +static +uint32_t ec_child_next(ec_t * ec, ec_fop_data_t * fop, uint32_t idx) { while (!ec_child_valid(ec, fop, idx)) { @@ -56,7 +59,7 @@ int32_t ec_child_next(ec_t * ec, ec_fop_data_t * fop, uint32_t idx) } if (idx == fop->first) { - return -1; + return EC_INVALID_INDEX; } } @@ -515,13 +518,13 @@ int32_t ec_child_select(ec_fop_data_t * fop) void ec_dispatch_next(ec_fop_data_t * fop, uint32_t idx) { - int32_t i = -1; + uint32_t i = EC_INVALID_INDEX; ec_t * ec = fop->xl->private; LOCK(&fop->lock); i = ec_child_next(ec, fop, idx); - if (i >= 0 && i < 64) { + if (i < EC_METHOD_MAX_NODES) { idx = i; fop->remaining ^= 1ULL << idx; @@ -534,7 +537,7 @@ void ec_dispatch_next(ec_fop_data_t * fop, uint32_t idx) UNLOCK(&fop->lock); - if (i >= 0 && i < 64) + if (i < EC_METHOD_MAX_NODES) { fop->wind(ec, fop, idx); } @@ -647,8 +650,8 @@ void ec_dispatch_min(ec_fop_data_t * fop) { ec_t * ec = fop->xl->private; uintptr_t mask; - int32_t idx; - int count; + uint32_t idx; + int32_t count; ec_dispatch_start(fop); @@ -661,7 +664,7 @@ void ec_dispatch_min(ec_fop_data_t * fop) while (count-- > 0) { idx = ec_child_next(ec, fop, idx + 1); - if (idx >= 0 && idx < 64) + if (idx < EC_METHOD_MAX_NODES) mask |= 1ULL << idx; } |