]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
macvtap: Fix getPhysfn to get the PF of a direct attach network interface
authorRoopa Prabhu <roprabhu@cisco.com>
Tue, 16 Aug 2011 04:28:58 +0000 (21:28 -0700)
committerStefan Berger <stefanb@us.ibm.com>
Tue, 16 Aug 2011 15:59:00 +0000 (11:59 -0400)
This patch renames getPhysfn to getPhysfnDev and adds code to get the
Physical function and Virtual Function index of the direct attach linkdev (if
the direct attach interface is a SRIOV VF). The idea is to send the port
profile message to a PF if the direct attach interface is a SRIOV VF.

Signed-off-by: Roopa Prabhu <roprabhu@cisco.com>
Signed-off-by: Christian Benvenuti <benve@cisco.com>
Signed-off-by: David Wang <dwang2@cisco.com>
src/util/macvtap.c

index 0b00776695a705c56cbe9b623361e84d1dae62e4..9bf7fa6bcd0ac472e48c64a734b0bfcd5ca61ca4 100644 (file)
@@ -943,23 +943,20 @@ err_exit:
 
 # ifdef IFLA_VF_PORT_MAX
 static int
-getPhysfn(const char *linkdev,
-          int32_t *vf,
-          char **physfndev)
+getPhysfnDev(const char *linkdev,
+             int32_t *vf,
+             char **physfndev)
 {
     int rc = 0;
-    bool virtfn = false;
 
-    if (virtfn) {
+    if (ifaceIsVirtualFunction(linkdev)) {
 
-        /* XXX: if linkdev is SR-IOV VF, then set vf = VF index */
-        /* XXX: and set linkdev = PF device */
-        /* XXX: need to use get_physical_function_linux() or */
-        /* XXX: something like that to get PF */
-        /* XXX: device and figure out VF index */
-
-        rc = 1;
+        /* if linkdev is SR-IOV VF, then set vf = VF index */
+        /* and set linkdev = PF device */
 
+        rc = ifaceGetPhysicalFunction(linkdev, physfndev);
+        if (!rc)
+            rc = ifaceGetVirtualFunctionIndex(*physfndev, linkdev, vf);
     } else {
 
         /* Not SR-IOV VF: physfndev is linkdev and VF index
@@ -1003,7 +1000,7 @@ doPortProfileOp8021Qbh(const char *ifname,
     int ifindex;
     int vlanid = -1;
 
-    rc = getPhysfn(ifname, &vf, &physfndev);
+    rc = getPhysfnDev(ifname, &vf, &physfndev);
     if (rc)
         goto err_exit;