diff options
| -rw-r--r-- | arch/x86/kernel/machine_kexec_32.c | 4 | ||||
| -rw-r--r-- | arch/x86/kernel/machine_kexec_64.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/machine_kexec_32.c b/arch/x86/kernel/machine_kexec_32.c index e7368c1da01d..c1c429d00130 100644 --- a/arch/x86/kernel/machine_kexec_32.c +++ b/arch/x86/kernel/machine_kexec_32.c | |||
| @@ -194,7 +194,7 @@ void machine_kexec(struct kimage *image) | |||
| 194 | unsigned int preserve_context); | 194 | unsigned int preserve_context); |
| 195 | 195 | ||
| 196 | #ifdef CONFIG_KEXEC_JUMP | 196 | #ifdef CONFIG_KEXEC_JUMP |
| 197 | if (kexec_image->preserve_context) | 197 | if (image->preserve_context) |
| 198 | save_processor_state(); | 198 | save_processor_state(); |
| 199 | #endif | 199 | #endif |
| 200 | 200 | ||
| @@ -253,7 +253,7 @@ void machine_kexec(struct kimage *image) | |||
| 253 | image->preserve_context); | 253 | image->preserve_context); |
| 254 | 254 | ||
| 255 | #ifdef CONFIG_KEXEC_JUMP | 255 | #ifdef CONFIG_KEXEC_JUMP |
| 256 | if (kexec_image->preserve_context) | 256 | if (image->preserve_context) |
| 257 | restore_processor_state(); | 257 | restore_processor_state(); |
| 258 | #endif | 258 | #endif |
| 259 | 259 | ||
diff --git a/arch/x86/kernel/machine_kexec_64.c b/arch/x86/kernel/machine_kexec_64.c index 89cea4d44679..84c3bf209e98 100644 --- a/arch/x86/kernel/machine_kexec_64.c +++ b/arch/x86/kernel/machine_kexec_64.c | |||
| @@ -274,7 +274,7 @@ void machine_kexec(struct kimage *image) | |||
| 274 | int save_ftrace_enabled; | 274 | int save_ftrace_enabled; |
| 275 | 275 | ||
| 276 | #ifdef CONFIG_KEXEC_JUMP | 276 | #ifdef CONFIG_KEXEC_JUMP |
| 277 | if (kexec_image->preserve_context) | 277 | if (image->preserve_context) |
| 278 | save_processor_state(); | 278 | save_processor_state(); |
| 279 | #endif | 279 | #endif |
| 280 | 280 | ||
| @@ -333,7 +333,7 @@ void machine_kexec(struct kimage *image) | |||
| 333 | image->preserve_context); | 333 | image->preserve_context); |
| 334 | 334 | ||
| 335 | #ifdef CONFIG_KEXEC_JUMP | 335 | #ifdef CONFIG_KEXEC_JUMP |
| 336 | if (kexec_image->preserve_context) | 336 | if (image->preserve_context) |
| 337 | restore_processor_state(); | 337 | restore_processor_state(); |
| 338 | #endif | 338 | #endif |
| 339 | 339 | ||
