Skip to content
Snippets Groups Projects
Commit 8843e55e authored by Libor Peltan's avatar Libor Peltan Committed by Daniel Salzman
Browse files

xdp: set ulimit for locked memory

parent 6e6b2542
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
#include <stdlib.h>
#include <assert.h>
#include <netinet/tcp.h>
#include <sys/resource.h>
#include "libknot/errcode.h"
#include "libknot/xdp/af_xdp.h"
......@@ -373,6 +374,14 @@ static int configure_sockets(conf_t *conf, server_t *s)
log_info("using reuseport for UDP%s", conf->cache.srv_tcp_reuseport ? " and TCP" : "");
#endif
if (conf->cache.srv_xdp_threads > 0) {
struct rlimit no_limit = { RLIM_INFINITY, RLIM_INFINITY };
int ret = setrlimit(RLIMIT_MEMLOCK, &no_limit);
if (ret) {
return -errno;
}
}
/* Update bound interfaces. */
conf_val_t listen_val = conf_get(conf, C_SRV, C_LISTEN);
conf_val_t rundir_val = conf_get(conf, C_SRV, C_RUNDIR);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment