hyperv/vmbus: Function renaming vmbus_msg_swintr -> vmbus_msg_task

It is not an SWI handler for a long time.

MFC after:	1 week
Sponsored by:	Microsoft OSTC
Differential Revision:	https://reviews.freebsd.org/D6409
This commit is contained in:
Sepherosa Ziehau 2016-05-18 04:04:14 +00:00
parent a5dcd30f69
commit 679afe0d78
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=300112

View File

@ -75,7 +75,7 @@ static hv_setup_args setup_args; /* only CPU 0 supported at this time */
static char *vmbus_ids[] = { "VMBUS", NULL };
static void
vmbus_msg_swintr(void *arg, int pending __unused)
vmbus_msg_task(void *arg __unused, int pending __unused)
{
hv_vmbus_message *msg;
@ -443,7 +443,7 @@ vmbus_bus_init(void)
taskqueue_start_threads_cpuset(&hv_vmbus_g_context.hv_msg_tq[j],
1, PI_NET, &cpu_mask, "hvmsg%d", j);
TASK_INIT(&hv_vmbus_g_context.hv_msg_task[j], 0,
vmbus_msg_swintr, NULL);
vmbus_msg_task, NULL);
/*
* Prepare the per cpu msg and event pages to be called on each cpu.