svn commit: r300112 - head/sys/dev/hyperv/vmbus

Sepherosa Ziehau sephe at FreeBSD.org
Wed May 18 04:04:15 UTC 2016


Author: sephe
Date: Wed May 18 04:04:14 2016
New Revision: 300112
URL: https://svnweb.freebsd.org/changeset/base/300112

Log:
  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

Modified:
  head/sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c

Modified: head/sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c
==============================================================================
--- head/sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c	Wed May 18 03:58:04 2016	(r300111)
+++ head/sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c	Wed May 18 04:04:14 2016	(r300112)
@@ -75,7 +75,7 @@ static hv_setup_args setup_args; /* only
 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.


More information about the svn-src-all mailing list