mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
[IA64] kdump: crash.c coding style fix
Fix indenting of switch statement to follow Documentation/CodingStyle. Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
committed by
Tony Luck
parent
b0247a55f4
commit
3975afffd3
@@ -174,32 +174,32 @@ kdump_init_notifier(struct notifier_block *self, unsigned long val, void *data)
|
|||||||
return NOTIFY_DONE;
|
return NOTIFY_DONE;
|
||||||
|
|
||||||
switch (val) {
|
switch (val) {
|
||||||
case DIE_INIT_MONARCH_PROCESS:
|
case DIE_INIT_MONARCH_PROCESS:
|
||||||
if (kdump_on_init) {
|
if (kdump_on_init) {
|
||||||
atomic_set(&kdump_in_progress, 1);
|
atomic_set(&kdump_in_progress, 1);
|
||||||
*(nd->monarch_cpu) = -1;
|
*(nd->monarch_cpu) = -1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DIE_INIT_MONARCH_LEAVE:
|
case DIE_INIT_MONARCH_LEAVE:
|
||||||
if (kdump_on_init)
|
if (kdump_on_init)
|
||||||
machine_kdump_on_init();
|
machine_kdump_on_init();
|
||||||
break;
|
break;
|
||||||
case DIE_INIT_SLAVE_LEAVE:
|
case DIE_INIT_SLAVE_LEAVE:
|
||||||
if (atomic_read(&kdump_in_progress))
|
if (atomic_read(&kdump_in_progress))
|
||||||
unw_init_running(kdump_cpu_freeze, NULL);
|
unw_init_running(kdump_cpu_freeze, NULL);
|
||||||
break;
|
break;
|
||||||
case DIE_MCA_RENDZVOUS_LEAVE:
|
case DIE_MCA_RENDZVOUS_LEAVE:
|
||||||
if (atomic_read(&kdump_in_progress))
|
if (atomic_read(&kdump_in_progress))
|
||||||
unw_init_running(kdump_cpu_freeze, NULL);
|
unw_init_running(kdump_cpu_freeze, NULL);
|
||||||
break;
|
break;
|
||||||
case DIE_MCA_MONARCH_LEAVE:
|
case DIE_MCA_MONARCH_LEAVE:
|
||||||
/* die_register->signr indicate if MCA is recoverable */
|
/* die_register->signr indicate if MCA is recoverable */
|
||||||
if (kdump_on_fatal_mca && !args->signr) {
|
if (kdump_on_fatal_mca && !args->signr) {
|
||||||
atomic_set(&kdump_in_progress, 1);
|
atomic_set(&kdump_in_progress, 1);
|
||||||
*(nd->monarch_cpu) = -1;
|
*(nd->monarch_cpu) = -1;
|
||||||
machine_kdump_on_init();
|
machine_kdump_on_init();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return NOTIFY_DONE;
|
return NOTIFY_DONE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user