git: fd9babb1b85f - stable/14 - privs: add PRIV_PIPEBUF
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 05 Oct 2024 07:11:14 UTC
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=fd9babb1b85f097d70d3c345b973b9b35a3b3c69 commit fd9babb1b85f097d70d3c345b973b9b35a3b3c69 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2024-09-15 06:38:41 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2024-10-05 07:08:54 +0000 privs: add PRIV_PIPEBUF (cherry picked from commit 8ae779832c6fee0588274af3c48cc643022787e6) --- sys/sys/priv.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/sys/priv.h b/sys/sys/priv.h index a61de8d32fe0..fd0f7dd213ff 100644 --- a/sys/sys/priv.h +++ b/sys/sys/priv.h @@ -426,11 +426,13 @@ */ #define PRIV_VM86_INTCALL 550 /* Allow invoking vm86 int handlers. */ +#define PRIV_PIPEBUF 560 /* Allow to allocate reserved pipebuf + space */ + /* * Set of reserved privilege values, which will be allocated to code as * needed, in order to avoid renumbering later privileges due to insertion. */ -#define _PRIV_RESERVED0 560 #define _PRIV_RESERVED1 561 #define _PRIV_RESERVED2 562 #define _PRIV_RESERVED3 563