aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2019-10-14 04:17:56 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2019-10-14 04:17:56 +0000
commitf6eccf96a0ffa94ead8565145a4a845c79d74f7b (patch)
treeaf220f624b5f4a8010eb5e23dabfbb633a7ca978 /sys/sys
parent5df91cbe020a0c1db6ad4e658b9f4c47c4c9284d (diff)
downloadsrc-f6eccf96a0ffa94ead8565145a4a845c79d74f7b.tar.gz
src-f6eccf96a0ffa94ead8565145a4a845c79d74f7b.zip
Since EPOCH_TRACE had been moved to opt_global.h, we don't need to waste
extra space in struct thread.
Notes
Notes: svn path=/head/; revision=353485
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/proc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 36424d51bc78..b7ec9d875b78 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -367,7 +367,9 @@ struct thread {
void *td_lkpi_task; /* LinuxKPI task struct pointer */
struct epoch_tracker *td_et; /* (k) compat KPI spare tracker */
int td_pmcpend;
+#ifdef EPOCH_TRACE
SLIST_HEAD(, epoch_tracker) td_epochs;
+#endif
};
struct thread0_storage {