diff options
Diffstat (limited to 'zebra')
| -rw-r--r-- | zebra/main.c | 10 | ||||
| -rw-r--r-- | zebra/subdir.am | 2 | 
2 files changed, 9 insertions, 3 deletions
diff --git a/zebra/main.c b/zebra/main.c index 2d492f8649..e516688a19 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -105,9 +105,13 @@ const struct option longopts[] = {  #endif /* HAVE_NETLINK */  	{0}}; -zebra_capabilities_t _caps_p[] = {ZCAP_NET_ADMIN,   ZCAP_SYS_ADMIN, -				  ZCAP_NET_RAW,     ZCAP_IPC_LOCK, -				  ZCAP_READ_SEARCH, ZCAP_SYS_RAWIO}; +zebra_capabilities_t _caps_p[] = {ZCAP_NET_ADMIN, ZCAP_SYS_ADMIN, +				  ZCAP_NET_RAW, +#ifdef HAVE_DPDK +				  ZCAP_IPC_LOCK,  ZCAP_READ_SEARCH, +				  ZCAP_SYS_RAWIO +#endif +};  /* zebra privileges to run with */  struct zebra_privs_t zserv_privs = { diff --git a/zebra/subdir.am b/zebra/subdir.am index 89836f3ba4..a926c14adf 100644 --- a/zebra/subdir.am +++ b/zebra/subdir.am @@ -268,3 +268,5 @@ endif  zebra_zebra_dplane_dpdk_la_SOURCES = zebra/dpdk/zebra_dplane_dpdk.c zebra/dpdk/zebra_dplane_dpdk_vty.c  zebra_zebra_dplane_dpdk_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -L/usr/local/lib -v +zebra_zebra_dplane_dpdk_la_CFLAGS = $(DPDK_CFLAGS) +zebra_zebra_dplane_dpdk_la_LIBADD  = $(DPDK_LIBS)  | 
