summaryrefslogtreecommitdiffstats
path: root/src/vnet/policer
AgeCommit message (Expand)AuthorFilesLines
2020-03-12policer: API cleanupJakub Grajciar3-52/+111
2019-12-10api: multiple connections per processDave Barach1-1/+1
2019-03-07policer: migrate old MULTIARCH macros to VLIB_NODE_FNFilip Tehlar1-26/+19
2018-12-20delete policer classify repeat count drop packets when action is DROPcohu1-5/+0
2018-10-23c11 safe string handling supportDave Barach3-9/+9
2018-09-24Trivial: Clean up some typos.Paul Vinciguerra5-8/+8
2018-09-08L2 BVI/FIB: Update L2 FIB table when BVI's MAC changesNeale Ranns1-0/+2
2018-01-23VPPAPIGEN: vppapigen replacement in Python PLY.Ole Troan1-1/+1
2018-01-11api: remove transport specific code from handlersFlorin Coras1-7/+7
2018-01-09api: refactor vlibmemoryFlorin Coras1-2/+2
2017-12-18VPP-269 Coding standards cleanup - vnet/vnet/policerKrishanpal singh1-11/+14
2017-10-24Add extern to *_main global variable declarations in header files.Dave Wallace2-1/+3
2017-10-20null-terminate some formatted stringGabriel Ganne1-0/+2
2017-10-10punt and drop features:Neale Ranns3-62/+94
2017-10-09vppapigen: support per-file (major,minor,patch) version stampsDave Barach1-0/+2
2017-08-22policer: remove unused codeDamjan Marion1-4/+0
2017-08-10Fix memory leaks found in policer code.Chaoyu Jin1-0/+34
2017-07-23Improve L2 Input/Output Feature Infrastructure and UsageJohn Lo1-8/+3
2017-06-03Fix for gcc7Marco Varlese1-1/+1
2017-03-22policer: fix byte ordering in policer_details msgMarek Gradzki1-2/+2
2017-02-22VPP-635: CLI Memory leak with invalid parameterBilly McFall2-8/+24
2017-01-27API refactoring : policerPavel Kotucek2-0/+379
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion6-0/+3478
"> a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <vppinfra/format.h> #include <vppinfra/mheap.h> #include <vppinfra/os.h> /* Valgrind stuff. */ #include <vppinfra/memcheck.h> #include <vppinfra/valgrind.h> void *clib_per_cpu_mheaps[CLIB_MAX_MHEAPS]; void clib_mem_exit (void) { u8 *heap = clib_mem_get_per_cpu_heap (); if (heap) mheap_free (heap); clib_mem_set_per_cpu_heap (0); } /* Initialize CLIB heap based on memory/size given by user. Set memory to 0 and CLIB will try to allocate its own heap. */ void * clib_mem_init (void *memory, uword memory_size) { u8 *heap; if (memory || memory_size) heap = mheap_alloc (memory, memory_size); else { /* Allocate lots of address space since this will limit the amount of memory the program can allocate. In the kernel we're more conservative since some architectures (e.g. mips) have pretty small kernel virtual address spaces. */ #ifdef __KERNEL__ #define MAX_VM_MEG 64 #else #define MAX_VM_MEG 1024 #endif uword alloc_size = MAX_VM_MEG << 20; uword tries = 16; while (1) { heap = mheap_alloc (0, alloc_size); if (heap) break; alloc_size = (alloc_size * 3) / 4; tries--; if (tries == 0) break; } } clib_mem_set_heap (heap); return heap; } void * clib_mem_init_thread_safe (void *memory, uword memory_size) { mheap_t *h; u8 *heap; clib_mem_init (memory, memory_size); heap = clib_mem_get_per_cpu_heap (); ASSERT (heap); h = mheap_header (heap); /* make the main heap thread-safe */ h->flags |= MHEAP_FLAG_THREAD_SAFE; return heap; } u8 * format_clib_mem_usage (u8 * s, va_list * va) { int verbose = va_arg (*va, int); return format (s, "%U", format_mheap, clib_mem_get_heap (), verbose); } void clib_mem_usage (clib_mem_usage_t * u) { mheap_usage (clib_mem_get_heap (), u); } /* Call serial number for debugger breakpoints. */ uword clib_mem_validate_serial = 0; void clib_mem_validate (void) { if (MHEAP_HAVE_SMALL_OBJECT_CACHE) clib_warning ("clib_mem_validate disabled (small object cache is ON)"); else { mheap_validate (clib_mem_get_heap ()); clib_mem_validate_serial++; } } void clib_mem_trace (int enable) { mheap_trace (clib_mem_get_heap (), enable); } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */