diff options
| author | Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org> | 2026-04-22 10:17:50 +0000 |
|---|---|---|
| committer | Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org> | 2026-04-22 10:17:50 +0000 |
| commit | 45827f9ad2e32ec8e4cdde62cbf722a48fb1b396 (patch) | |
| tree | 962d4d9a00f5314344552592eca72cbca9241593 | |
| parent | 98a868c61b931e37cf09adecd8542cbd874d333f (diff) | |
linux: Fix a typo in a header comment
PR: 294651
Reported by: Dmitry Lukhtionov <dmitryluhtionov@gmail.com>
Fixes: 50ff71e956b6 ("linux: Support PR_GET_CHILD_SUBREAPER prctl(2)")
Pull-Request: https://github.com/freebsd/freebsd-src/pull/2151
| -rw-r--r-- | sys/compat/linux/linux_misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_misc.h b/sys/compat/linux/linux_misc.h index abd3a6df76f1..269fb734a69a 100644 --- a/sys/compat/linux/linux_misc.h +++ b/sys/compat/linux/linux_misc.h @@ -57,8 +57,8 @@ #define LINUX_PR_GET_SECCOMP 21 #define LINUX_PR_SET_SECCOMP 22 #define LINUX_PR_CAPBSET_READ 23 -#define LINUX_PR_SET_CHILD_SUBREAPER 36 /* Get child subreaper status */ -#define LINUX_PR_GET_CHILD_SUBREAPER 37 /* Set child subreaper status */ +#define LINUX_PR_SET_CHILD_SUBREAPER 36 /* Set child subreaper status */ +#define LINUX_PR_GET_CHILD_SUBREAPER 37 /* Get child subreaper status */ #define LINUX_PR_SET_NO_NEW_PRIVS 38 /* Set no_new_privs attribute */ #define LINUX_PR_GET_NO_NEW_PRIVS 39 /* Get no_new_privs attribute */ #define LINUX_PR_SET_PTRACER 1499557217 |
