Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 May 2016 04:04:14 +0000 (UTC)
From:      Sepherosa Ziehau <sephe@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r300112 - head/sys/dev/hyperv/vmbus
Message-ID:  <201605180404.u4I44Exf015774@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605180404.u4I44Exf015774>