Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31122
b: refs/heads/master
c: 84d11c5
h: refs/heads/master
v: v3
  • Loading branch information
Serge E. Hallyn authored and Martin Schwidefsky committed Jun 29, 2006
1 parent 99ca659 commit 78cab58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 774fc4ef718f7343306ba3695e8a2622cbd9764d
refs/heads/master: 84d11c5dcc4cdfe962fcd58a0302711befcdceda
5 changes: 2 additions & 3 deletions trunk/drivers/s390/s390mach.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/errno.h>
#include <linux/workqueue.h>
#include <linux/time.h>
#include <linux/kthread.h>

#include <asm/lowcore.h>

Expand Down Expand Up @@ -56,8 +57,6 @@ s390_collect_crw_info(void *param)
unsigned int chain;

sem = (struct semaphore *)param;
/* Set a nice name. */
daemonize("kmcheck");
repeat:
down_interruptible(sem);
slow = 0;
Expand Down Expand Up @@ -516,7 +515,7 @@ arch_initcall(machine_check_init);
static int __init
machine_check_crw_init (void)
{
kernel_thread(s390_collect_crw_info, &m_sem, CLONE_FS|CLONE_FILES);
kthread_run(s390_collect_crw_info, &m_sem, "kmcheck");
ctl_set_bit(14, 28); /* enable channel report MCH */
return 0;
}
Expand Down

0 comments on commit 78cab58

Please sign in to comment.