ck_hs: Simplification of probe sequence limit.

ck_pring
Samy Al Bahra 11 years ago
parent 2c2d7fab90
commit 92d662fa5e

@ -421,19 +421,16 @@ ck_hs_map_probe(struct ck_hs *hs,
cursor = bucket + ((j + offset) & (CK_HS_PROBE_L1 - 1));
if (probes++ == probe_limit) {
if (probe_limit != opl && pr == NULL) {
if (probe_limit == opl || pr != NULL) {
k = CK_HS_EMPTY;
goto leave;
}
/*
* If no eligible slot has been found yet, continue probe
* sequence with original probe limit.
*/
probe_limit = opl;
probes--;
j--;
continue;
}
k = CK_HS_EMPTY;
goto leave;
}
k = ck_pr_load_ptr(cursor);

Loading…
Cancel
Save