diff options
Diffstat (limited to 'src/plugins/af_xdp/unformat.c')
-rw-r--r-- | src/plugins/af_xdp/unformat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/af_xdp/unformat.c b/src/plugins/af_xdp/unformat.c index b2292464112..bb4c3048d23 100644 --- a/src/plugins/af_xdp/unformat.c +++ b/src/plugins/af_xdp/unformat.c @@ -50,6 +50,8 @@ unformat_af_xdp_create_if_args (unformat_input_t * input, va_list * vargs) args->mode = AF_XDP_MODE_COPY; else if (unformat (line_input, "zero-copy")) args->mode = AF_XDP_MODE_ZERO_COPY; + else if (unformat (line_input, "no-syscall-lock")) + args->flags |= AF_XDP_CREATE_FLAGS_NO_SYSCALL_LOCK; else { /* return failure on unknown input */ |