diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-09-13 04:25:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-13 11:22:29 -0400 |
commit | 9f1583339a6f52c0c26441d39a0deff8246800f7 (patch) | |
tree | 99efa7690d22a45bf87ec80beb5e2a2d43f6b26d /arch | |
parent | fb911ee849756fc6c609dddded92d9207ff3fb29 (diff) |
[PATCH] use add_taint() for setting tainted bit flags
Use the add_taint() interface for setting tainted bit flags instead of
doing it manually.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/smpboot.c | 2 | ||||
-rw-r--r-- | arch/x86_64/kernel/mce.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/smpboot.c b/arch/i386/kernel/smpboot.c index c70cd2a08304..5f0a95d76a4f 100644 --- a/arch/i386/kernel/smpboot.c +++ b/arch/i386/kernel/smpboot.c | |||
@@ -202,7 +202,7 @@ static void __devinit smp_store_cpu_info(int id) | |||
202 | goto valid_k7; | 202 | goto valid_k7; |
203 | 203 | ||
204 | /* If we get here, it's not a certified SMP capable AMD system. */ | 204 | /* If we get here, it's not a certified SMP capable AMD system. */ |
205 | tainted |= TAINT_UNSAFE_SMP; | 205 | add_taint(TAINT_UNSAFE_SMP); |
206 | } | 206 | } |
207 | 207 | ||
208 | valid_k7: | 208 | valid_k7: |
diff --git a/arch/x86_64/kernel/mce.c b/arch/x86_64/kernel/mce.c index 969365c0771b..08203b07f4bd 100644 --- a/arch/x86_64/kernel/mce.c +++ b/arch/x86_64/kernel/mce.c | |||
@@ -217,7 +217,7 @@ void do_machine_check(struct pt_regs * regs, long error_code) | |||
217 | panicm_found = 1; | 217 | panicm_found = 1; |
218 | } | 218 | } |
219 | 219 | ||
220 | tainted |= TAINT_MACHINE_CHECK; | 220 | add_taint(TAINT_MACHINE_CHECK); |
221 | } | 221 | } |
222 | 222 | ||
223 | /* Never do anything final in the polling timer */ | 223 | /* Never do anything final in the polling timer */ |