From cb9cadad578297ffd78fa8a33670bdf1ab669e7e Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Tue, 8 Dec 2015 15:45:58 -0700 Subject: Initial commit of vpp code. Change-Id: Ib246f1fbfce93274020ee93ce461e3d8bd8b9f17 Signed-off-by: Ed Warnicke --- vpp/conf/80-vpp.conf | 15 +++++++++++++++ vpp/conf/startup.conf | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 vpp/conf/80-vpp.conf create mode 100644 vpp/conf/startup.conf (limited to 'vpp/conf') diff --git a/vpp/conf/80-vpp.conf b/vpp/conf/80-vpp.conf new file mode 100644 index 00000000..8fdf184c --- /dev/null +++ b/vpp/conf/80-vpp.conf @@ -0,0 +1,15 @@ +# Number of 2MB hugepages desired +vm.nr_hugepages=1024 + +# Must be greater than or equal to (2 * vm.nr_hugepages). +vm.max_map_count=3096 + +# All groups allowed to access hugepages +vm.hugetlb_shm_group=0 + +# Shared Memory Max must be greator or equal to the total size of hugepages. +# For 2MB pages, TotalHugepageSize = vm.nr_hugepages * 2 * 1024 * 1024 +# If the existing kernel.shmmax setting (cat /sys/proc/kernel/shmmax) +# is greater than the calculated TotalHugepageSize then set this parameter +# to current shmmax value. +kernel.shmmax=2147483648 diff --git a/vpp/conf/startup.conf b/vpp/conf/startup.conf new file mode 100644 index 00000000..081589e9 --- /dev/null +++ b/vpp/conf/startup.conf @@ -0,0 +1,15 @@ + +unix { + nodaemon + log /tmp/vpe.log + cli-listen localhost:5002 + full-coredump +} + +api-trace { + on +} + +dpdk { + socket-mem 1024 +} -- cgit 1.2.3-korg