summaryrefslogtreecommitdiffstats
path: root/sys/sys
diff options
context:
space:
mode:
authorbadger <badger@FreeBSD.org>2017-05-23 12:40:50 +0000
committerbadger <badger@FreeBSD.org>2017-05-23 12:40:50 +0000
commit4be195ca42f9809dadcafc6e7eb30d4b32827cde (patch)
tree3316bf72a71da3af780f15a12616baab974a1ac3 /sys/sys
parentec6744a8aa29e6f78a6680cfc47e0fcf8a164b85 (diff)
downloadFreeBSD-src-4be195ca42f9809dadcafc6e7eb30d4b32827cde.zip
FreeBSD-src-4be195ca42f9809dadcafc6e7eb30d4b32827cde.tar.gz
move p_sigqueue to the end of struct proc
In order to preserve KBI in stable branches, replace the existing p_sigqueue slot with padding and move the expanded (as of r315949) p_sigqueue to the end of the struct. This is a repeat of r317529 (which concerned td_sigqueue in struct thread) for p_sigqueue in struct proc. Virtualbox modules (and possibly others) are affected without this fix. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D10843
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/proc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index bb0136d..d32807a 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -567,8 +567,8 @@ struct proc {
struct mtx p_itimmtx; /* Lock for the virt/prof timers */
struct mtx p_profmtx; /* Lock for the profiling */
struct ksiginfo *p_ksi; /* Locked by parent proc lock */
- sigqueue_t p_sigqueue; /* (c) Sigs not delivered to a td. */
-#define p_siglist p_sigqueue.sq_signals
+ uint64_t padding1[4];
+ void *padding2[4];
/* The following fields are all zeroed upon creation in fork. */
#define p_startzero p_oppid
@@ -660,6 +660,8 @@ struct proc {
u_int p_ptevents; /* (c) ptrace() event mask. */
uint16_t p_elf_machine; /* (x) ELF machine type */
uint64_t p_elf_flags; /* (x) ELF flags */
+ sigqueue_t p_sigqueue; /* (c) Sigs not delivered to a td. */
+#define p_siglist p_sigqueue.sq_signals
};
#define p_session p_pgrp->pg_session
OpenPOWER on IntegriCloud