diff options
author | Dave Jones <davej@redhat.com> | 2014-02-26 16:49:49 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2014-03-21 00:28:09 +0100 |
commit | 8c90487cdc64847b4fdd812ab3047f426fec4d13 (patch) | |
tree | fe2a8f66c35ed90aa09d140c0989fe5c85c14856 /kernel/module.c | |
parent | x86, intel: Make MSR_IA32_MISC_ENABLE bit constants systematic (diff) | |
download | linux-8c90487cdc64847b4fdd812ab3047f426fec4d13.tar.xz linux-8c90487cdc64847b4fdd812ab3047f426fec4d13.zip |
Rename TAINT_UNSAFE_SMP to TAINT_CPU_OUT_OF_SPEC
Rename TAINT_UNSAFE_SMP to TAINT_CPU_OUT_OF_SPEC, so we can repurpose
the flag to encompass a wider range of pushing the CPU beyond its
warrany.
Signed-off-by: Dave Jones <davej@fedoraproject.org>
Link: http://lkml.kernel.org/r/20140226154949.GA770@redhat.com
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c index d24fcf29cb64..ca2c1aded7ee 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -1015,7 +1015,7 @@ static size_t module_flags_taint(struct module *mod, char *buf) buf[l++] = 'C'; /* * TAINT_FORCED_RMMOD: could be added. - * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't + * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't * apply to modules. */ return l; |