[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1358184212-30381-1-git-send-email-dinggnu@gmail.com>
Date: Mon, 14 Jan 2013 17:23:29 +0000
From: Cong Ding <dinggnu@...il.com>
To: Ralf Baechle <ralf@...ux-mips.org>,
David Howells <dhowells@...hat.com>, linux-mips@...ux-mips.org,
linux-kernel@...r.kernel.org
Cc: Cong Ding <dinggnu@...il.com>
Subject: [PATCH] mips: kernel/vpe.c: fix wrong KERN_WARNING message
in the printk, the variable t euqals to NULL, so there is no t->index, we use
v->tc->index instead.
Signed-off-by: Cong Ding <dinggnu@...il.com>
---
arch/mips/kernel/vpe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c
index eec690a..3e20c33 100644
--- a/arch/mips/kernel/vpe.c
+++ b/arch/mips/kernel/vpe.c
@@ -705,7 +705,7 @@ static int vpe_run(struct vpe * v)
printk(KERN_WARNING
"VPE loader: TC %d is already in use.\n",
- t->index);
+ v->tc->index);
return -ENOEXEC;
}
} else {
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists