forked from luck/tmp_suning_uos_patched
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>
This commit is contained in:
parent
c7c2c39be8
commit
6b84bd1674
@ -1668,7 +1668,7 @@ static int __init netback_init(void)
|
||||
"netback/%u", group);
|
||||
|
||||
if (IS_ERR(netbk->task)) {
|
||||
printk(KERN_ALERT "kthread_run() fails at netback\n");
|
||||
printk(KERN_ALERT "kthread_create() fails at netback\n");
|
||||
del_timer(&netbk->net_timer);
|
||||
rc = PTR_ERR(netbk->task);
|
||||
goto failed_init;
|
||||
|
Loading…
Reference in New Issue
Block a user