Creating a Virtual Port

A virtual port (VPort) is a data object that represents an internal port on the NIC switch of a network adapter that supports single root I/O virtualization (SR-IOV). Each NIC switch has the following ports for network connectivity:

  • One external physical port for connectivity to the external physical network.

  • One or more internal VPorts which are connected to the PCI Express (PCIe) Physical Function (PF) or Virtual Functions (VFs).

    The PF is attached to the Hyper-V parent partition and is exposed as a virtual network adapter in the management operating system that runs in that partition.

    A VF is attached to the Hyper-V child partition and is exposed as a virtual network adapter in the guest operating system that runs in that partition.

There are two types of VPorts:

Default VPort
The default VPort provides network connectivity to the networking components that run in the management operating system. The default VPort has an identifier of NDIS_DEFAULT_VPORT_ID.

When the PF miniport driver creates and configures the default NIC switch, the driver implicitly creates the default VPort and attaches it to the PF. The default VPort cannot be attached to a VF.

The default VPort is always in an activated state and cannot be explicitly deleted. The PF miniport driver implicitly deletes the default VPort only when it deletes the default NIC switch.

For more information on how to create a NIC switch and the default VPort on the switch, see Creating a NIC Switch.

Nondefault VPort
Nondefault VPorts are not created implicitly when the NIC switch is created. An overlying driver, such as the virtualization stack, explicitly creates these ports by issuing OID method requests of OID_NIC_SWITCH_CREATE_VPORT. Nondefault VPorts may be attached to the PF or to a VF, and can only be created after the NIC switch has been created.

A nondefault VPort that is attached to a VF provides network connectivity to the networking components that run in the guest operating system. After it is created and attached to the VF, the nondefault VPort is in an activated state.

A nondefault VPort that is attached to the PF provides additional network offload capabilities to the networking components that run in the management operating system. For example, nondefault VPorts on the PF could be used to provide offload capabilities similar to the virtual machine queue (VMQ) interface.

Note Nondefault VPorts can only be created after the NIC switch has been created.

An overlying driver issues an object identifier (OID) method request of OID_NIC_SWITCH_CREATE_VPORT to create a nondefault VPort on a specified NIC switch. This OID request also attaches the created VPort to the network adapter's PF or a previously allocated VF.

The InformationBuffer member of the NDIS_OID_REQUEST structure contains a pointer to theNDIS_NIC_SWITCH_VPORT_PARAMETERS structure. After a successful return from the OID_NIC_SWITCH_CREATE_VPORT request, the VPortId member of the NDIS_NIC_SWITCH_VPORT_PARAMETERS structure has a VPort identifier that is unique across the VPorts on the NIC switch.

The overlying driver initializes the NDIS_NIC_SWITCH_VPORT_PARAMETERS structure with the configuration information about the nondefault VPort to be created. The configuration information includes the PCIe function to which the nondefault VPort is attached and the number of queue pairs for the nondefault VPort.

When it initializes the NDIS_NIC_SWITCH_VPORT_PARAMETERS structure, the overlying driver must do the following:

  • The SwitchId member must be set to the identifier of a NIC switch that was previously created on the network adapter through an OID method request of OID_NIC_SWITCH_CREATE_SWITCH.

    Note Starting with Windows Server 2012, the SR-IOV interface supports only one NIC switch on the network adapter. This switch is known as the default NIC switch. When creating a nondefault VPort, the overlying driver must set the SwitchId member to the NDIS_DEFAULT_SWITCH_ID identifier.

  • The VPortId member must be set to NDIS_DEFAULT_VPORT_ID.

  • The AttachedFunctionId member must be set to the identifier of the VF or PF on which the nondefault VPort is to be attached.

    A value of NDIS_PF_FUNCTION_ID specifies the PF. Otherwise, the value must be set to the identifier of a VF whose resources were previously allocated through an OID method request of OID_NIC_SWITCH_ALLOCATE_VF.

    Note The attachment of a nondefault VPort to a VF or PF cannot be changed after the nondefault VPort has been created.

The overlying driver can also specify the number of queue pairs assigned to the VPort. A queue pair is a transmit and receive queue on the network adapter that is assigned to the VPort. If the network adapter supports asymmetric queue pairs for nondefault VPorts, the overlying driver may specify a different number of queue pairs for each VPort that the driver creates. For more information, see Symmetric and Asymmetric Assignment of Queue Pairs.

The overlying driver calls NdisOidRequest to issue the OID_NIC_SWITCH_CREATE_VPORT request to the underlying PF miniport driver. Before NDIS forwards the OID method request to the miniport driver, it does the following:

  1. NDIS validates the parameters within the NDIS_NIC_SWITCH_VPORT_PARAMETERS structure. If the parameters are in error, NDIS fails the OID method request and does not pass the request to the PF miniport driver.

  2. NDIS assigns an identifier for the nondefault VPort within the range from one to (NumVPorts– 1), where NumVPorts is the number of VPorts that the miniport driver has configured on the network adapter. The driver specifies this number in the NumVPorts member of the NDIS_NIC_SWITCH_INFO structure. The driver returns this structure through an OID query request of OID_NIC_SWITCH_ENUM_SWITCHES.

    Note A VPort identifier of NDIS_DEFAULT_VPORT_ID is reserved for the default VPort that is attached to the PF on the default NIC switch.

The assigned VPort identifier uniquely identifies the nondefault VPort on the NIC switch of the network adapter.

  1. NDIS sets the VPortId member of the NDIS_NIC_SWITCH_VPORT_PARAMETERS structure with the assigned VPort identifier.

When the PF miniport driver is issued the OID request, the driver allocates the hardware and software resources associated with the specified nondefault VPort. After all of the resources are successfully allocated, the PF miniport driver completes the OID successfully by returning NDIS_STATUS_SUCCESS from MiniportOidRequest.

If the OID_NIC_SWITCH_CREATE_VPORT request is completed successfully, the PF miniport driver and the overlying driver must retain the VPortId value of the nondefault VPort for successive operations. The VPortId value is used during these operations:

The following points apply to the creation of nondefault VPorts:

  • Receive filters for media access control (MAC) and virtual LAN (VLAN) identifiers are configured on the VPort after it has been created. Overlying drivers dynamically set these receive filters by issuing OID method requests of OID_RECEIVE_FILTER_SET_FILTER. Receive filters can also be moved from one VPort to another through OID set requests of OID_RECEIVE_FILTER_MOVE_FILTER.

  • A nondefault VPort attached to the VF is in an activated state when it is created. The VPort cannot be deactivated if it is attached to the VF.

    A nondefault VPort attached to the PF is in a deactivated state when it is created. An overlying driver, such as the Hyper-V extensible switch module, explicitly activates the nondefault VPort attached to the PF after the VPort has been created successfully. This is done by issuing an OID method request of OID_NIC_SWITCH_VPORT_PARAMETERS to the PF miniport driver.

    When the overlying driver issues this OID request, it passes an NDIS_NIC_SWITCH_VPORT_PARAMETERS structure with the VPortState member set to NdisNicSwitchVPortStateActivated.

    After a nondefault VPort is in an activated state, the PF miniport driver can allocate shared memory for the VPort by calling NdisAllocateSharedMemory. The driver must set the VPortId member in the NDIS_SHARED_MEMORY_PARAMETERS structure to the VPort's identifier value.

Note When a nondefault VPort is in an activated state, it is only set to a deactivated state when it is deleted through an OID set request of OID_NIC_SWITCH_DELETE_VPORT.