diff options
Diffstat (limited to 'src/vppinfra/hash.h')
-rw-r--r-- | src/vppinfra/hash.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/vppinfra/hash.h b/src/vppinfra/hash.h index 23b91b107a2..f5735bc92ee 100644 --- a/src/vppinfra/hash.h +++ b/src/vppinfra/hash.h @@ -96,18 +96,11 @@ typedef struct hash_header uword *is_user; } hash_t; -/* Hash header size in bytes */ -always_inline uword -hash_header_bytes (void *v) -{ - return sizeof (hash_t); -} - /* Returns a pointer to the hash header given the vector pointer */ always_inline hash_t * hash_header (void *v) { - return vec_header (v, hash_header_bytes (v)); + return vec_header (v); } /* Number of elements in the hash table */ |