Age | Commit message (Expand) | Author | Files | Lines |
2020-10-02 | vppinfra: Function to check if a bihash has been initialised |  Neale Ranns | 1 | -0/+5 |
2020-09-30 | vpp: update 'show bihash' command |  Damjan Marion | 1 | -11/+14 |
2020-09-30 | vppinfra: use heap to store bihash data |  Damjan Marion | 1 | -25/+165 |
2020-08-17 | vppinfra: fix RC in bihash instantiation |  Nathan Skrzypczak | 1 | -2/+2 |
2020-08-06 | vppinfra: harmonize function names |  Dave Barach | 1 | -2/+2 |
2020-05-27 | vppinfra: fix SIGBUS in bihash init when running unpriviledged, take two |  Damjan Marion | 1 | -1/+1 |
2020-05-24 | vppinfra: fix SIGBUS in bihash init when running unpriviledged |  Damjan Marion | 1 | -1/+1 |
2020-04-23 | nat: add/del ed_ext_ports only if the table is instantiated |  Dave Barach | 1 | -0/+3 |
2020-04-23 | vppinfra: more bihash optimizatons |  Damjan Marion | 1 | -54/+20 |
2020-04-22 | vppinfra: improve bihash add/del performance |  Damjan Marion | 1 | -19/+27 |
2020-04-21 | vppinfra: bihash improvements |  Dave Barach | 1 | -10/+119 |
2020-03-27 | vppinfra: add clib_bihash_get_bucket |  Damjan Marion | 1 | -6/+2 |
2020-02-05 | vppinfra: numa vector placement support |  Dave Barach | 1 | -1/+0 |
2020-01-16 | vppinfra: fixing compilation issues in 32-bit |  Vijayabhaskar Katamreddy | 1 | -2/+3 |
2019-12-16 | vppinfra: bihash walk cb typedef and continue/stop controls |  Neale Ranns | 1 | -3/+4 |
2019-09-03 | vppinfra: add bihash_init2 |  Dave Barach | 1 | -20/+40 |
2019-08-01 | vppinfra: make first bihash add thread-safe |  Dave Barach | 1 | -7/+24 |
2019-07-19 | vppinfra: fix OOM check in bihash |  Andreas Schultz | 1 | -1/+1 |
2019-07-11 | vppinfra: bihash add-but-do-not-overwrite semantics |  Dave Barach | 1 | -0/+7 |
2019-07-09 | vppinfra: allocate bihash virtual space on demand |  Dave Barach | 1 | -11/+63 |
2019-05-07 | bihash: Freeing up working_copy_lengths vector |  Vijayabhaskar Katamreddy | 1 | -1/+2 |
2019-05-07 | Add bihash statistics hook |  Dave Barach | 1 | -0/+18 |
2019-04-17 | Use template-specific key compare fn when deleting records |  Dave Barach | 1 | -2/+2 |
2019-03-15 | Fix bihash bucket double unlock. |  Tom Seidenberg | 1 | -2/+1 |
2018-11-14 | Remove c-11 memcpy checks from perf-critical code |  Dave Barach | 1 | -11/+12 |
2018-10-23 | c11 safe string handling support |  Dave Barach | 1 | -15/+15 |
2018-09-20 | bihash template: avoid memory leak upon rehash |  Andrew Yourtchenko | 1 | -0/+3 |
2018-09-19 | bihash template: reinstate the check for the available memory in the arena |  Andrew Yourtchenko | 1 | -1/+1 |
2018-09-11 | bihash 32/64 bit shared memory interop |  Dave Barach | 1 | -33/+33 |
2018-08-28 | 32/64 shmem bihash interoperability |  Dave Barach | 1 | -18/+154 |
2018-08-23 | bihash: remove unused counters |  Damjan Marion | 1 | -4/+0 |
2018-08-22 | bihash: add support for reuse of expired entry when bucket is full (VPP-1272) |  Matus Fabian | 1 | -2/+30 |
2018-08-06 | fix dangling reference in foreach_key_value_pair |  Dave Barach | 1 | -0/+7 |
2018-07-20 | bihash: give hint to CPU that we are spinlocking |  Damjan Marion | 1 | -1/+1 |
2018-07-20 | Fine-grained add / delete locking |  Dave Barach | 1 | -119/+95 |
2018-07-18 | vppinfra: increase max bihash arena size to 512GB |  Damjan Marion | 1 | -4/+4 |
2018-02-22 | bihash table size perf/scale improvements |  Dave Barach | 1 | -30/+46 |
2018-02-08 | Minimize bihash memory consumption |  Dave Barach | 1 | -9/+46 |
2018-01-24 | Adding a format function for bihash init routine to format the key, value, wh... |  Vijayabhaskar Katamreddy | 1 | -3/+20 |
2017-11-09 | lock init |  JingLiuZTE | 1 | -0/+1 |
2017-09-06 | Fixes for issues raised by Coverity (VPP-972) |  Chris Luke | 1 | -1/+2 |
2017-08-31 | Fix BIHASH_KVP_CACHE_SIZE == 0 case |  Dave Barach | 1 | -1/+13 |
2017-07-23 | Atomic bucket lock |  Dave Barach | 1 | -13/+14 |
2017-07-19 | Add a bihash prefetchable bucket-level cache |  Dave Barach | 1 | -8/+70 |
2017-06-05 | More GCC-7 errors |  Marco Varlese | 1 | -0/+2 |
2017-06-02 | Fix mac_age process crash in multi-threaded environment |  Steve Shin | 1 | -2/+1 |
2017-05-18 | VPP-847: improve bihash template memory allocator performance |  Dave Barach | 1 | -27/+43 |
2017-05-10 | completelly deprecate os_get_cpu_number, replace new occurences |  Damjan Marion | 1 | -8/+8 |
2017-01-18 | Fix coverity warnings, VPP-608 |  Dave Barach | 1 | -5/+6 |
2017-01-02 | Handle execessive hash collisions, VPP-555 |  Dave Barach | 1 | -46/+120 |