blob: abb5313bca3f27e66e90b3f51329656be0604b54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# 1. Introduction:
This document purpose is to build the DMM and run applications on it.
# 2. Build DPDK:
DPDK need to be built first for DMM RTE memory dependency.
- Steps :
Download dpdk-16.04.tar.xz from DPDK release, you can get it from [http://static.dpdk.org/rel](http://static.dpdk.org/rel)
```
#wget http://static.dpdk.org/rel/dpdk-16.04.tar.xz
#tar xvf dpdk-16.04.tar.xz
#vi dpdk-16.04/config/common_base //make CONFIG_RTE_BUILD_SHARED_LIB=y
#cd dpdk-16.04
#make install T=x86_64-native-linuxapp-gcc DESTDIR=/root/dpdk_build/tmp2
#cd x86_64-native-linuxapp-gcc
#make //install the dpdk which will generate .so inside lib folder in the path.
```
Note:
Environment:
Linux ubuntu 14.04 or some distro which support dpdk-16.04
# 3. Build DMM:
```
#cd dmm/build
#cmake -D DMM_DPDK_INSTALL_DIR=$DPDK_INSTALL_PATH ..
```
Note:
$DPDK_INSTALL_PATH is the path where DPDK has been installed
After cmake all the makefiles and dependent .sh files will be copied under build directory.
```
#make -j 8
```
Then we can get libnStackAPI.so
# 4. Env Setting:
- Hugepage setting:
```
#vi /etc/default/grub
//update GRUB_CMDLINE_LINUX_DEFAULT="default_hugepagesz=1G hugepagesz=1G hugepages=8"
#update-grub
#reboot
```
Check hugepage info
```
#cat /proc/meminfo
```
- Mount hugepages:
```
#mkdir -p /mnt/nstackhuge/
#mount -t hugetlbfs -o pagesize=1G none /mnt/nstackhuge/ //only 1G pgsize supported now
#mkdir -p /var/run/ip_module
```
# 5. Build and Run the APP
- Link the app with the lib **libnStackAPI.so** first, you can refer to app_example/perf-test
- Enable detail log of nstack by setting env var
```
#export NSTACK_LOG_ON=DBG
```
- Copy and update the module_config.json, rd_config.json into the same folder of app
- Run your app
|