Skip to content

Commit

Permalink
USB: replace kernel_thread() with kthread_run() in libusual.c
Browse files Browse the repository at this point in the history
Replaced kernel_thread() with kthread_run() since kernel_thread() is
deprecated in drivers/modules.

Signed-off-by: Cedric Le Goater <clg@fr.ibm.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Matthew Dharm authored and Greg Kroah-Hartman committed Sep 27, 2006
1 parent 997694d commit 0e3c8c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/usb/storage/libusual.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <linux/usb.h>
#include <linux/usb_usual.h>
#include <linux/vmalloc.h>
#include <linux/kthread.h>

/*
*/
Expand Down Expand Up @@ -117,7 +118,7 @@ static int usu_probe(struct usb_interface *intf,
const struct usb_device_id *id)
{
unsigned long type;
int rc;
struct task_struct* task;
unsigned long flags;

type = USB_US_TYPE(id->driver_info);
Expand All @@ -132,8 +133,9 @@ static int usu_probe(struct usb_interface *intf,
stat[type].fls |= USU_MOD_FL_THREAD;
spin_unlock_irqrestore(&usu_lock, flags);

rc = kernel_thread(usu_probe_thread, (void*)type, CLONE_VM);
if (rc < 0) {
task = kthread_run(usu_probe_thread, (void*)type, "libusual_%d", type);
if (IS_ERR(task)) {
int rc = PTR_ERR(task);
printk(KERN_WARNING "libusual: "
"Unable to start the thread for %s: %d\n",
bias_names[type], rc);
Expand Down Expand Up @@ -175,8 +177,6 @@ static int usu_probe_thread(void *arg)
int rc;
unsigned long flags;

daemonize("libusual_%d", type); /* "usb-storage" is kinda too long */

/* A completion does not work here because it's counted. */
down(&usu_init_notify);
up(&usu_init_notify);
Expand Down

0 comments on commit 0e3c8c2

Please sign in to comment.