[spp] [PATCH] spp_nfv: fix error of patch command

yasufum.o at gmail.com yasufum.o at gmail.com
Mon Jul 29 11:37:19 CEST 2019


From: Yasufumi Ogawa <yasufum.o at gmail.com>

This patch is to fix for patching ports.

Signed-off-by: Yasufumi Ogawa <yasufum.o at gmail.com>
---
 src/nfv/params.h          | 1 +
 src/spp-ctl/spp_webapi.py | 7 +++++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/nfv/params.h b/src/nfv/params.h
index 06e6f1f..5850791 100644
--- a/src/nfv/params.h
+++ b/src/nfv/params.h
@@ -18,6 +18,7 @@ struct porttype_map portmap[] = {
 	{ .port_name = "vhost", .port_type = VHOST, },
 	{ .port_name = "pcap", .port_type = PCAP, },
 	{ .port_name = "nullpmd", .port_type = NULLPMD, },
+	{ .port_name = "tap", .port_type = TAP, },
 	{ .port_name = NULL,    .port_type = UNDEF, },
 };
 
diff --git a/src/spp-ctl/spp_webapi.py b/src/spp-ctl/spp_webapi.py
index 89b188a..25b2e6f 100644
--- a/src/spp-ctl/spp_webapi.py
+++ b/src/spp-ctl/spp_webapi.py
@@ -13,6 +13,9 @@ import sys
 
 import spp_proc
 
+PORT_TYPES = ["phy", "vhost", "ring", "pcap", "nullpmd", "tap"]
+VF_PORT_TYPES = ["phy", "vhost", "ring"]
+# TODO(yasufum) consider PCAP_PORT_TYPES is required.
 
 LOG = logging.getLogger(__name__)
 
@@ -50,7 +53,7 @@ class BaseHandler(bottle.Bottle):
     def _validate_port(self, port):
         try:
             if_type, if_num = port.split(":")
-            if if_type not in ["phy", "vhost", "ring", "pcap", "nullpmd"]:
+            if if_type not in PORT_TYPES:
                 raise
             int(if_num)
         except Exception:
@@ -176,7 +179,7 @@ class V1VFCommon(object):
         vf = {}
         vf["client-id"] = info["client-id"]
         vf["ports"] = []
-        for key in ["phy", "vhost", "ring"]:
+        for key in VF_PORT_TYPES:
             for idx in info[key]:
                 vf["ports"].append(key + ":" + str(idx))
         vf["master-lcore"] = info["master-lcore"]
-- 
2.17.1



More information about the spp mailing list