Merge tag 'sched_ext-for-6.12-rc1-fixes-1' of git://git.kernel.org/pub/scm/linux...
[linux-2.6-block.git] / arch / s390 / kernel / nospec-sysfs.c
CommitLineData
4253b0e0
MS
1// SPDX-License-Identifier: GPL-2.0
2#include <linux/device.h>
3#include <linux/cpu.h>
4#include <asm/facility.h>
5#include <asm/nospec-branch.h>
6
7ssize_t cpu_show_spectre_v1(struct device *dev,
8 struct device_attribute *attr, char *buf)
9{
10 return sprintf(buf, "Mitigation: __user pointer sanitization\n");
11}
12
13ssize_t cpu_show_spectre_v2(struct device *dev,
14 struct device_attribute *attr, char *buf)
15{
aeaf7002
MS
16 if (test_facility(156))
17 return sprintf(buf, "Mitigation: etokens\n");
5d17d4ed 18 if (nospec_uses_trampoline())
4253b0e0 19 return sprintf(buf, "Mitigation: execute trampolines\n");
47837a5c 20 if (nobp_enabled())
4253b0e0
MS
21 return sprintf(buf, "Mitigation: limited branch prediction\n");
22 return sprintf(buf, "Vulnerable\n");
23}