diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-09-01 17:13:47 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-09-01 17:13:47 +0000 |
commit | ee151acfa4d9e10381d1fef8b04835cc682a9624 (patch) | |
tree | b1bfaefedc44bdd53af7ca2c577488d4cb0ab25a /sys/arch/amd64/include | |
parent | d8bb2951189723a88a65cc5f8da988a137a73ca0 (diff) |
Pledge "vmm" for ccp(4) ioctl(2).
Limit ccp ioctls to processes that pledge vmm. Specific psp device
ioctls for AMD SEV will allowed for vmd(8).
from hshoexer@; input deraadt@ jsg@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/conf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/conf.h b/sys/arch/amd64/include/conf.h index 5a2b10fe45b..730a5b2c249 100644 --- a/sys/arch/amd64/include/conf.h +++ b/sys/arch/amd64/include/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.9 2022/06/28 14:43:50 visa Exp $ */ +/* $OpenBSD: conf.h,v 1.10 2024/09/01 17:13:46 bluhm Exp $ */ /* $NetBSD: conf.h,v 1.2 1996/05/05 19:28:34 christos Exp $ */ /* @@ -54,3 +54,6 @@ cdev_decl(pctr); #include "vmm.h" cdev_decl(vmm); + +#include "ccp.h" +cdev_decl(psp); |