git: 867ac6f5e9e0 - stable/14 - struct kinfo_knote: add spare fields
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 07 Apr 2025 01:29:11 UTC
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=867ac6f5e9e0a98ae50873365ecc4dc038dd7d7e commit 867ac6f5e9e0a98ae50873365ecc4dc038dd7d7e Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2025-03-15 14:49:14 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2025-04-07 01:28:22 +0000 struct kinfo_knote: add spare fields (cherry picked from commit fe8ece34b446e92218a283ce5a7754784b6c53c1) --- sys/compat/freebsd32/freebsd32.h | 1 + sys/sys/user.h | 1 + 2 files changed, 2 insertions(+) diff --git a/sys/compat/freebsd32/freebsd32.h b/sys/compat/freebsd32/freebsd32.h index 2db154a8155c..c3234141d5a9 100644 --- a/sys/compat/freebsd32/freebsd32.h +++ b/sys/compat/freebsd32/freebsd32.h @@ -451,6 +451,7 @@ struct kinfo_knote32 { struct kevent32 knt_event; int knt_status; int knt_extdata; + uint32_t knt_spare0[8]; union { struct { int knt_vnode_type; diff --git a/sys/sys/user.h b/sys/sys/user.h index 943de0737457..3e5dba871c54 100644 --- a/sys/sys/user.h +++ b/sys/sys/user.h @@ -683,6 +683,7 @@ struct kinfo_knote { struct kevent knt_event; int knt_status; int knt_extdata; + uint64_t knt_spare0[4]; union { struct { int knt_vnode_type;