History log of /freebsd/sys/kern/kern_jaildesc.c (Results 1 – 4 of 4)
Revision Date Author Comments
# d8d5324e 09-Sep-2025 Jamie Gritton <jamie@FreeBSD.org>

jaildesc: fix typo and style(9) violations.

Reported by: kib
MFC after: 3 days


# 16f600dc 09-Sep-2025 Jamie Gritton <jamie@FreeBSD.org>

jaildesc: replace EBADF with EINVAL

Following fd9e09cb, EBADF is not the suitable error code for a non-
jail descriptor passed to jail_set, jail_get, jail_attach_fd, and
jail_remove_fd.

Reported by

jaildesc: replace EBADF with EINVAL

Following fd9e09cb, EBADF is not the suitable error code for a non-
jail descriptor passed to jail_set, jail_get, jail_attach_fd, and
jail_remove_fd.

Reported by: kib

show more ...


# 8ec7a830 05-Sep-2025 Jamie Gritton <jamie@FreeBSD.org>

jaildesc: fix a misplaced error check and a spurious finit call
Reported by: kib


# 851dc7f8 04-Sep-2025 Jamie Gritton <jamie@FreeBSD.org>

jail: add jail descriptors

Similar to process descriptors, jail desriptors are allow jail
administration using the file descriptor interface instead of JIDs.
They come from and can be used by jail_s

jail: add jail descriptors

Similar to process descriptors, jail desriptors are allow jail
administration using the file descriptor interface instead of JIDs.
They come from and can be used by jail_set(2) and jail_get(2),
and there are two new system calls, jail_attach_jd(2) and
jail_remove_jd(2).

Reviewed by: bz, brooks
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D43696

show more ...