aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-10-02 15:32:10 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-10-11 21:40:31 -0400
commitecf89e581acce83e8cd2a5530858be22c64441f7 (patch)
tree46537273cdb3bfb2230d406ca219b11781aca1b9 /arch/powerpc
parentba4df2808a86f8b103c4db0b8807649383e9bd13 (diff)
ppc: eeh_event should just use kthread_run()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/platforms/pseries/eeh_event.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh_event.c b/arch/powerpc/platforms/pseries/eeh_event.c
index fb506317ebb..75e2eccefca 100644
--- a/arch/powerpc/platforms/pseries/eeh_event.c
+++ b/arch/powerpc/platforms/pseries/eeh_event.c
@@ -23,6 +23,7 @@
23#include <linux/pci.h> 23#include <linux/pci.h>
24#include <linux/slab.h> 24#include <linux/slab.h>
25#include <linux/workqueue.h> 25#include <linux/workqueue.h>
26#include <linux/kthread.h>
26#include <asm/eeh_event.h> 27#include <asm/eeh_event.h>
27#include <asm/ppc-pci.h> 28#include <asm/ppc-pci.h>
28 29
@@ -59,8 +60,6 @@ static int eeh_event_handler(void * dummy)
59 struct eeh_event *event; 60 struct eeh_event *event;
60 struct eeh_dev *edev; 61 struct eeh_dev *edev;
61 62
62 set_task_comm(current, "eehd");
63
64 spin_lock_irqsave(&eeh_eventlist_lock, flags); 63 spin_lock_irqsave(&eeh_eventlist_lock, flags);
65 event = NULL; 64 event = NULL;
66 65
@@ -113,7 +112,7 @@ static int eeh_event_handler(void * dummy)
113 */ 112 */
114static void eeh_thread_launcher(struct work_struct *dummy) 113static void eeh_thread_launcher(struct work_struct *dummy)
115{ 114{
116 if (kernel_thread(eeh_event_handler, NULL, CLONE_KERNEL) < 0) 115 if (IS_ERR(kthread_run(eeh_event_handler, NULL, "eehd")))
117 printk(KERN_ERR "Failed to start EEH daemon\n"); 116 printk(KERN_ERR "Failed to start EEH daemon\n");
118} 117}
119 118