aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-plugin/src/hashtb.c
diff options
context:
space:
mode:
authorAlberto Compagno <acompagn+fdio@cisco.com>2019-05-28 14:04:04 +0000
committerGerrit Code Review <gerrit@fd.io>2019-05-28 14:04:05 +0000
commitba01a54f212e98a13083867431dbb54160b496c6 (patch)
tree9d8697fb7897dcff5620ff85f574c816caa9000d /hicn-plugin/src/hashtb.c
parentcb549cad953a0578f6908382a90e4eb01b2b26a6 (diff)
parent2e1756de877df622680b05be421cb27a884db167 (diff)
Merge "[HICN-197] Supporting multiple local faces for the same prefix. Fixed buffer deallocation when data are pushed from the application."
Diffstat (limited to 'hicn-plugin/src/hashtb.c')
-rw-r--r--hicn-plugin/src/hashtb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hicn-plugin/src/hashtb.c b/hicn-plugin/src/hashtb.c
index 0bdb91c0d..5d41b7aa9 100644
--- a/hicn-plugin/src/hashtb.c
+++ b/hicn-plugin/src/hashtb.c
@@ -485,7 +485,8 @@ loop_buckets:
* If we are doing lookup for a data, do not take a
* lock in case of a hit with a CS entry
*/
- bucket->hb_entries[i].locks++;
+ if (!(*is_cs))
+ bucket->hb_entries[i].locks++;
*bucket_is_overflow = is_overflow;
ret = HICN_ERROR_HASHTB_EXIST;
goto done;