kni: query the name of an instance
authorBruce Richardson <bruce.richardson@intel.com>
Wed, 27 May 2015 13:47:49 +0000 (14:47 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 16 Jun 2015 14:15:39 +0000 (16:15 +0200)
When a KNI object is created, a name is assigned to it which is stored
internally. There is also an API function to look up a KNI object by
name, but there is no API to query the current name of an existing
KNI object. This patch adds just such an API.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Helin Zhang <helin.zhang@intel.com>
lib/librte_kni/rte_kni.c
lib/librte_kni/rte_kni.h
lib/librte_kni/rte_kni_version.map

index 4e70fa0..c5a0089 100644 (file)
@@ -674,6 +674,12 @@ rte_kni_get(const char *name)
        return NULL;
 }
 
+const char *
+rte_kni_get_name(const struct rte_kni *kni)
+{
+       return kni->name;
+}
+
 /*
  * It is deprecated and just for backward compatibility.
  */
index 603e2cd..fd2b78f 100644 (file)
@@ -247,6 +247,16 @@ extern uint8_t rte_kni_get_port_id(struct rte_kni *kni) \
  */
 extern struct rte_kni *rte_kni_get(const char *name);
 
+/**
+ * Get the name given to a KNI device
+ *
+ * @param kni
+ *   The KNI instance to query
+ * @return
+ *   The pointer to the KNI name
+ */
+extern const char *rte_kni_get_name(const struct rte_kni *kni);
+
 /**
  * Get the KNI context of the specific port.
  *
index b0bbf4d..a987d31 100644 (file)
@@ -5,6 +5,7 @@ DPDK_2.0 {
        rte_kni_close;
        rte_kni_create;
        rte_kni_get;
+       rte_kni_get_name;
        rte_kni_get_port_id;
        rte_kni_handle_request;
        rte_kni_info_get;