From: Akinobu Mita <[email protected]>
[S390] Check the return value of kthread_run().
Signed-off-by: Akinobu Mita <[email protected]>
Signed-off-by: Martin Schwidefsky <[email protected]>
---
drivers/s390/s390mach.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletion(-)
diff -urpN linux-2.6/drivers/s390/s390mach.c linux-2.6-patched/drivers/s390/s390mach.c
--- linux-2.6/drivers/s390/s390mach.c 2007-01-26 17:27:47.000000000 +0100
+++ linux-2.6-patched/drivers/s390/s390mach.c 2007-01-26 17:27:47.000000000 +0100
@@ -525,7 +525,11 @@ arch_initcall(machine_check_init);
static int __init
machine_check_crw_init (void)
{
- kthread_run(s390_collect_crw_info, &m_sem, "kmcheck");
+ struct task_struct *task;
+
+ task = kthread_run(s390_collect_crw_info, &m_sem, "kmcheck");
+ if (IS_ERR(task))
+ return PTR_ERR(task);
ctl_set_bit(14, 28); /* enable channel report MCH */
return 0;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]