From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl0-f67.google.com (mail-pl0-f67.google.com [209.85.160.67]) by dpdk.org (Postfix) with ESMTP id 3CF2CA84C for ; Tue, 17 Apr 2018 23:53:32 +0200 (CEST) Received: by mail-pl0-f67.google.com with SMTP id t20-v6so12752344ply.9 for ; Tue, 17 Apr 2018 14:53:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=9d9HpFflX4ljbwEO0YOOdzpW0V5GM4YpUUbm0KCuYBA=; b=zH3LYgEGgLcfDQ2Xe07iu7GpyqlzKw/d//nw19QxLYjkWELkcTswXyK03Ce8R2ozcP h3D4G+ZxbArPq1twfsBZuo9GBg+T13KbJBOQljPUikG/tN3P7M9p1xqKfXblAilN2RnX N5NeO3Cp6xZ8Qc41qH1KoG+bmLhKkNIowLhSi9+rZw+bDXMPZeD+kSF6C+8vym6qLLKI NdSoighDuj0pcJGZ3MMv249eKPqppLBckfIlJ/kC+/7B5qgNyxpkm9fHKAee0i6kZBlO 6pHAuAuYCYGH+LObC7NU+6dgJma87PDtfPTI+upyKC4R15Mi1KFmzy9cajwv1OgQ7eV8 DstA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=9d9HpFflX4ljbwEO0YOOdzpW0V5GM4YpUUbm0KCuYBA=; b=ghj8NaoxjpP5yBAa6kCQnqtqkRjYQqzoxYpc4JxeYZ5q5wquK94kvfRzgpv6Xnm+k/ o/2/vB3LHcY/mt46cx0LG6CzKl5ubanVR5ZBoDpJ2xboMizTOvVerWiQ1q9zZe2ld5Nn XP9L9pVzG4PDlG+Q2urfxCB8313Pa4uPexzfkhBDWY43fsR0C4Y75V9ZsBbKXWy2hQHB ZhFpmRZsj+1vv8mI1Gcx3uj2E6lM1AlP3vCzuPB69f9S8B/NOGMm9t3sQ3oqAtHt7Tya VhxzzaiDa+RW/aQePh0Wo9lcTxowbQ7Mk1rI0jcajS1qEXC+x+lzbTIAC5zHa+3ULapq aGpA== X-Gm-Message-State: ALQs6tAr+CvDppglxY3UJ4Lua4oVpFIXatHzHXupCMjWcta1EsbOdKaA fR0AoPF1h8GQv/wWqESNrUZ8RIvsMT8= X-Google-Smtp-Source: AIpwx4+PQ7LoyzftZlBaFvbf8JR4ZV/bv5Vdqoj0YYMtaqfJSlnQvrqkgdwDkuaMW+fnyXd49SvcYA== X-Received: by 2002:a17:902:44c:: with SMTP id 70-v6mr3532181ple.354.1524002010751; Tue, 17 Apr 2018 14:53:30 -0700 (PDT) Received: from xeon-e3.lan (204-195-71-95.wavecable.com. [204.195.71.95]) by smtp.gmail.com with ESMTPSA id c3sm32785533pfd.28.2018.04.17.14.53.29 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Apr 2018 14:53:29 -0700 (PDT) From: Stephen Hemminger X-Google-Original-From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Tue, 17 Apr 2018 14:53:23 -0700 Message-Id: <20180417215324.8576-4-sthemmin@microsoft.com> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180417215324.8576-1-sthemmin@microsoft.com> References: <20180417215324.8576-1-sthemmin@microsoft.com> Subject: [dpdk-dev] [PATCH v3 3/4] net/netvsc: add documentation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2018 21:53:32 -0000 Matching documentation for new netvsc device. Signed-off-by: Stephen Hemminger --- doc/guides/nics/index.rst | 1 + doc/guides/nics/netvsc.rst | 97 ++++++++++++++++++++++++++ doc/guides/rel_notes/release_18_05.rst | 6 ++ 3 files changed, 104 insertions(+) create mode 100644 doc/guides/nics/netvsc.rst diff --git a/doc/guides/nics/index.rst b/doc/guides/nics/index.rst index ea9110c81159..c5d19476bf68 100644 --- a/doc/guides/nics/index.rst +++ b/doc/guides/nics/index.rst @@ -32,6 +32,7 @@ Network Interface Controller Drivers mlx4 mlx5 mvpp2 + netvsc nfp octeontx qede diff --git a/doc/guides/nics/netvsc.rst b/doc/guides/nics/netvsc.rst new file mode 100644 index 000000000000..1b7f0333fd52 --- /dev/null +++ b/doc/guides/nics/netvsc.rst @@ -0,0 +1,97 @@ +.. SPDX-License-Identifier: BSD-3-Clause + Copyright(c) Microsoft Corporation. + +Netvsc (Hyper-V) poll mode driver. +================================================ + +Hyper-V is a hypervisor integrated into Window Server 2008, Windows 10 +and later versions. It supports a para-virtualized network interface +called netvsc that is visible on the virtual machine bus (VMBUS). In +the Data Plane Development Kit (DPDK), we provide a Network Virtual +Service Client (NetVSC) Poll Mode Driver (PMD). The NetVSC PMD +supports Windows Server 2016 and Microsoft Azure cloud. + +NetVSC Implementation in DPDK +----------------------------- + +The Netvsc PMD is a standalone driver. VMBus network devices that are +being used by DPDK must be unbound from the Linux kernel driver +(hv_netvsc) and bound to the Userspace IO driver for Hyper-V +(uio_hv_generic). + +This is most conveniently done with the +.. _`driverctl`: https://gitlab.com/driverctl/driverctl +script. + +To list all VMBusus network devices: + + .. code-block:: console + + driverctl -b vmbus -v list-devices | grep netvsc + + +To override default kernel device with DPDK uio it is necessary to first determine the GUID associated with a particular existing Ethernet device then pass that to ``driverctl``. + + .. code-block:: console + + GUID=$(basename $(readlink /sys/class/net/eth1/device)) + driverctl -b vmbus set-override $GUID uio_hv_generic + + +The kernel must be version 5.0 or later to allow driver_override to work. With older kernels ethernet must be rebound manually using sysfs bind and unbind. + + .. code-block:: console + + NET_GUID="f8615163-df3e-46c5-913f-f2d2f965ed0e" + DEV_GUID=$(basename $(readlink /sys/class/net/eth1/device)) + modprobe uio_hv_generic + echo $NET_GUID > /sys/bus/vmbus/drivers/uio_hv_generic/new_id + echo $DEV_GUID > /sys/bus/vmbus/drivers/hv_netvsc/unbind + echo $DEV_GUID > /sys/bus/vmbus/drivers/uio_hv_generic/bind + +.. Note:: + + The dpkd-devbind.py script should not be used. It only handles PCI devices. + + + +Features and Limitations of Hyper-V PMD +--------------------------------------- + +In this release, the hyper PMD driver provides the basic functionality of packet reception and transmission. + +* It supports merge-able buffers per packet when receiving packets and scattered buffer per packet + when transmitting packets. The packet size supported is from 64 to 65536. + +* It supports multicast packets and promiscuous mode. In order to this to work, the guest network + configuration on Hyper-V must be configured to allow this as well. + +* Hyper-V driver does not support MAC or VLAN filtering because the host does not support it. + The device has only a single MAC address. + +* VLAN tags are always stripped and presented in mbuf tci field. + +* The Hyper-V driver does not use or support Link State or Rx interrupt. + +* The number of queues is limited by the host (currently 64). + When used with 4.16 kernel only a single queue is available. + +* This driver is intended for use with synthetic path only. + Accelerated Networking (SR-IOV) acceleration is not supported yet. + Use the VDEV_NETVSC device for accelerated networking instead. + + +Prerequisites +------------- + +The following prerequisites apply: + +* Linux kernel support for UIO on vmbus is done with the uio_hv_generic driver. + This driver was originally added in 4.14 kernel, but that version lacks necessary + features for networking. The 4.16 kernel will work but is limited to a single queue. + Supporting multiple queues (subchannels) required additional changes + which were added in 5.0. + +* VMBus uses Universal Unique Identifiers (UUID) to identify devices. + Therefore the netvsc and vmbus drivers require the libuuid library + to be installed. diff --git a/doc/guides/rel_notes/release_18_05.rst b/doc/guides/rel_notes/release_18_05.rst index bc9cdda6af7a..0a7b65d49293 100644 --- a/doc/guides/rel_notes/release_18_05.rst +++ b/doc/guides/rel_notes/release_18_05.rst @@ -115,6 +115,12 @@ New Features Linux uevent is supported as backend of this device event notification framework. +* **Added experimental support for Hyper-V netvsc PMD.** + + The new experimntal ``netvsc`` poll mode driver provides native support for + networking on Hyper-V. See the :doc:`../nics/netvsc` nic driver guide + for more details on this new driver. + API Changes ----------- -- 2.17.0