diff options
author | Florin Coras <fcoras@cisco.com> | 2018-06-22 15:29:38 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-06-25 20:43:44 +0000 |
commit | adb5bd5344cd7b422c0c08e6434ad8642b897502 (patch) | |
tree | 93f2ed26f808ff73882436ea4702eb0eedc2f765 /src/vppinfra/cuckoo_template.h | |
parent | c474feea962bcde3b5eece0ff2be8d3fd8019093 (diff) |
tw: add light weight timer update function
Because it avoids pool putting/getting the timer, this function is
somewhat faster than stopping and restarting a timer.
Change-Id: Id99ed9d356b0b1f7e12facfe8da193e1cd30b3ec
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vppinfra/cuckoo_template.h')
-rw-r--r-- | src/vppinfra/cuckoo_template.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vppinfra/cuckoo_template.h b/src/vppinfra/cuckoo_template.h index b53a089771d..eccbde108c4 100644 --- a/src/vppinfra/cuckoo_template.h +++ b/src/vppinfra/cuckoo_template.h @@ -154,6 +154,8 @@ typedef struct typedef struct { + CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); + /** reduced hashes corresponding to elements */ u8 reduced_hashes[CLIB_CUCKOO_KVP_PER_BUCKET]; |