Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

netback: Fix alert message.

The original message in netback_init was 'kthread_run() fails', which should be
'kthread_create() fails'.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Wei Liu and committed by
David S. Miller
6b84bd16 c7c2c39b

+1 -1
+1 -1
drivers/net/xen-netback/netback.c
··· 1668 1668 "netback/%u", group); 1669 1669 1670 1670 if (IS_ERR(netbk->task)) { 1671 - printk(KERN_ALERT "kthread_run() fails at netback\n"); 1671 + printk(KERN_ALERT "kthread_create() fails at netback\n"); 1672 1672 del_timer(&netbk->net_timer); 1673 1673 rc = PTR_ERR(netbk->task); 1674 1674 goto failed_init;