The branch main has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=a560abedfb4f9626d5193c235822fbf7b1e7b390
commit a560abedfb4f9626d5193c235822fbf7b1e7b390 Author: Konstantin Belousov <[email protected]> AuthorDate: 2026-01-08 07:57:12 +0000 Commit: Konstantin Belousov <[email protected]> CommitDate: 2026-01-25 15:53:42 +0000 audit: handle AUE_PDWAIT Reviewed by: asomers, markj Tested by: pho Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D54592 --- sys/security/audit/audit_bsm.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sys/security/audit/audit_bsm.c b/sys/security/audit/audit_bsm.c index 0b6802f3194f..6cd96ebe092f 100644 --- a/sys/security/audit/audit_bsm.c +++ b/sys/security/audit/audit_bsm.c @@ -1115,6 +1115,16 @@ kaudit_to_bsm(struct kaudit_record *kar, struct au_record **pau) } break; + case AUE_PDWAIT: + if (ARG_IS_VALID(kar, ARG_FFLAGS)) { + tok = au_to_arg32(1, "flags", ar->ar_arg_fflags); + kau_write(rec, tok); + } + if (ARG_IS_VALID(kar, ARG_FD)) { + tok = au_to_arg32(1, "fd", ar->ar_arg_fd); + kau_write(rec, tok); + } + case AUE_IOCTL: if (ARG_IS_VALID(kar, ARG_CMD)) { tok = au_to_arg32(2, "cmd", ar->ar_arg_cmd);
