diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index fa6b7eff601a..8573375b022e 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -1853,6 +1853,10 @@ linux_prctl(struct thread *td, struct linux_prctl_args *a
rgs)
linux_msg(td, "unsupported prctl PR_SET_PTRACER");
error = EINVAL;
break;
+ case LINUX_PR_SET_VMA:
+ LINUX_RATELIMIT_MSG("unsupported prctl PR_SET_VMA");
+ error = EINVAL;
+ break;
default:
linux_msg(td, "unsupported prctl option %d", args->option);
error = EINVAL;
diff --git a/sys/compat/linux/linux_misc.h b/sys/compat/linux/linux_misc.h
index 51c0ee40f5f8..8174a8a8a657 100644
--- a/sys/compat/linux/linux_misc.h
+++ b/sys/compat/linux/linux_misc.h
@@ -59,6 +59,7 @@
#define LINUX_PR_CAPBSET_READ 23
#define LINUX_PR_SET_NO_NEW_PRIVS 38
#define LINUX_PR_SET_PTRACER 1499557217
+#define LINUX_PR_SET_VMA 1398164801
#define LINUX_MAX_COMM_LEN 16 /* Maximum length of the process name. */