From: NeilBrown Date: Wed, 22 Jun 2005 00:17:17 +0000 (-0700) Subject: [PATCH] md: print correct pid for newly created bitmap-writeback-daemon. X-Git-Tag: v2.6.13-rc1~68^2~582^2~18 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d80a138c013f81c1b9383c83983934e34e380a2d;p=karo-tx-linux.git [PATCH] md: print correct pid for newly created bitmap-writeback-daemon. The debugging message printed the wrong pid, which didn't help remove bugs.... Signed-off-by: Neil Brown Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c index b43bdb2c7e64..c43fd031aafe 100644 --- a/drivers/md/bitmap.c +++ b/drivers/md/bitmap.c @@ -1112,7 +1112,7 @@ static int bitmap_start_daemon(struct bitmap *bitmap, mdk_thread_t **ptr, md_wakeup_thread(daemon); /* start it running */ PRINTK("%s: %s daemon (pid %d) started...\n", - bmname(bitmap), name, bitmap->daemon->tsk->pid); + bmname(bitmap), name, daemon->tsk->pid); out_unlock: spin_unlock_irqrestore(&bitmap->lock, flags); return 0;