[Differential] [Closed] D5282: hyperv/hn: Use non-fast taskqueue for transmission

Phabricator phabric-noreply at FreeBSD.org
Thu Feb 18 07:29:14 UTC 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rS295746: hyperv/hn: Use non-fast taskqueue for transmission (authored by sephe).

CHANGED PRIOR TO COMMIT
  https://reviews.freebsd.org/D5282?vs=13307&id=13404#toc

REPOSITORY
  rS FreeBSD src repository

CHANGES SINCE LAST UPDATE
  https://reviews.freebsd.org/D5282?vs=13307&id=13404

REVISION DETAIL
  https://reviews.freebsd.org/D5282

AFFECTED FILES
  head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c

CHANGE DETAILS
  diff --git a/head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c b/head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
  --- a/head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
  +++ b/head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
  @@ -368,7 +368,7 @@
   	sc->hn_direct_tx_size = hn_direct_tx_size;
   
   	if (hn_tx_taskq == NULL) {
  -		sc->hn_tx_taskq = taskqueue_create_fast("hn_tx", M_WAITOK,
  +		sc->hn_tx_taskq = taskqueue_create("hn_tx", M_WAITOK,
   		    taskqueue_thread_enqueue, &sc->hn_tx_taskq);
   		taskqueue_start_threads(&sc->hn_tx_taskq, 1, PI_NET, "%s tx",
   		    device_get_nameunit(dev));
  @@ -2178,7 +2178,7 @@
   	if (!hn_share_tx_taskq)
   		return;
   
  -	hn_tx_taskq = taskqueue_create_fast("hn_tx", M_WAITOK,
  +	hn_tx_taskq = taskqueue_create("hn_tx", M_WAITOK,
   	    taskqueue_thread_enqueue, &hn_tx_taskq);
   	taskqueue_start_threads(&hn_tx_taskq, 1, PI_NET, "hn tx");
   }

EMAIL PREFERENCES
  https://reviews.freebsd.org/settings/panel/emailpreferences/

To: sepherosa_gmail.com, delphij, royger, decui_microsoft.com, honzhan_microsoft.com, howard0su_gmail.com, adrian, network
Cc: freebsd-virtualization-list, freebsd-net-list
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D5282.13404.patch
Type: text/x-patch
Size: 879 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/freebsd-virtualization/attachments/20160218/2f295080/attachment.bin>


More information about the freebsd-virtualization mailing list