aboutsummaryrefslogtreecommitdiff
path: root/sys/x86
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2018-01-31 16:54:05 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2018-01-31 16:54:05 +0000
commitb31b965e7c61923f2bb1670b6ce8b685f4fe9202 (patch)
tree5f69c6d482f86ccb73d7b35a62b4e920b5383c1b /sys/x86
parent1fc46a9ba0d3b1225c13d59ddd9db857375f6077 (diff)
downloadsrc-b31b965e7c61923f2bb1670b6ce8b685f4fe9202.tar.gz
src-b31b965e7c61923f2bb1670b6ce8b685f4fe9202.zip
Expand IBRS TLA in sysctl help lines.
Requested by: bz Sponsored by: The FreeBSD Foundation MFC after: 1 week
Notes
Notes: svn path=/head/; revision=328627
Diffstat (limited to 'sys/x86')
-rw-r--r--sys/x86/x86/cpu_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/x86/x86/cpu_machdep.c b/sys/x86/x86/cpu_machdep.c
index 429a01afc3bc..1868b331c08d 100644
--- a/sys/x86/x86/cpu_machdep.c
+++ b/sys/x86/x86/cpu_machdep.c
@@ -582,7 +582,7 @@ int hw_ibrs_active;
int hw_ibrs_disable = 1;
SYSCTL_INT(_hw, OID_AUTO, ibrs_active, CTLFLAG_RD, &hw_ibrs_active, 0,
- "IBRS active");
+ "Indirect Branch Restricted Speculation active");
void
hw_ibrs_recalculate(void)
@@ -620,4 +620,4 @@ hw_ibrs_disable_handler(SYSCTL_HANDLER_ARGS)
}
SYSCTL_PROC(_hw, OID_AUTO, ibrs_disable, CTLTYPE_INT | CTLFLAG_RWTUN |
CTLFLAG_NOFETCH | CTLFLAG_MPSAFE, NULL, 0, hw_ibrs_disable_handler, "I",
- "Disable IBRS");
+ "Disable Indirect Branch Restricted Speculation");