On Tue, Feb 14, 2006 at 06:45:06PM +0100, Christoph Hellwig wrote: > Use the kthread_ API instead of opencoding lots of hairy code for kernel > thread creation and teardown. Followon patch to avoid the hardcoded aacraid string as kthread_run argument. Index: linux-2.6/drivers/scsi/aacraid/linit.c =================================================================== --- linux-2.6.orig/drivers/scsi/aacraid/linit.c 2006-02-14 16:24:17.000000000 +0100 +++ linux-2.6/drivers/scsi/aacraid/linit.c 2006-02-14 18:59:21.000000000 +0100 @@ -823,7 +823,7 @@ /* * Start any kernel threads needed */ - aac->thread = kthread_run(aac_command_thread, aac, "aacraid"); + aac->thread = kthread_run(aac_command_thread, aac, AAC_DRIVERNAME); if (IS_ERR(aac->thread)) { printk(KERN_ERR "aacraid: Unable to create command thread.\n"); error = PTR_ERR(aac->thread); - : send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html