test/telemetry: fix typo at beginning of line
[dpdk.git] / examples / pipeline / cli.c
index 5800cc9..d0150cf 100644 (file)
@@ -480,7 +480,7 @@ cmd_pipeline_create(char **tokens,
 static const char cmd_pipeline_port_in_help[] =
 "pipeline <pipeline_name> port in <port_id>\n"
 "   link <link_name> rxq <queue_id> bsz <burst_size>\n"
-"   source <mempool_name> <fie_name>\n";
+"   | source <mempool_name> <file_name>\n";
 
 static void
 cmd_pipeline_port_in(char **tokens,
@@ -779,6 +779,18 @@ cmd_pipeline_build(char **tokens,
        }
 }
 
+static void
+table_entry_free(struct rte_swx_table_entry *entry)
+{
+       if (!entry)
+               return;
+
+       free(entry->key);
+       free(entry->key_mask);
+       free(entry->action_data);
+       free(entry);
+}
+
 static const char cmd_pipeline_table_update_help[] =
 "pipeline <pipeline_name> table <table_name> update <file_name_add> "
 "<file_name_delete> <file_name_default>";
@@ -885,6 +897,7 @@ cmd_pipeline_table_update(char **tokens,
                        status = rte_swx_ctl_pipeline_table_entry_add(p->ctl,
                                table_name,
                                entry);
+                       table_entry_free(entry);
                        if (status) {
                                snprintf(out, out_size,
                                        "Invalid entry in file %s at line %u",
@@ -914,6 +927,7 @@ cmd_pipeline_table_update(char **tokens,
                        status = rte_swx_ctl_pipeline_table_entry_delete(p->ctl,
                                table_name,
                                entry);
+                       table_entry_free(entry);
                        if (status)  {
                                snprintf(out, out_size,
                                        "Invalid entry in file %s at line %u",
@@ -942,6 +956,7 @@ cmd_pipeline_table_update(char **tokens,
                        status = rte_swx_ctl_pipeline_table_default_entry_add(p->ctl,
                                table_name,
                                entry);
+                       table_entry_free(entry);
                        if (status) {
                                snprintf(out, out_size,
                                        "Invalid entry in file %s at line %u",
@@ -1163,7 +1178,18 @@ cmd_help(char **tokens,
 
        if (n_tokens == 0) {
                snprintf(out, out_size,
-                       "Type 'help <command>' for command details.\n\n");
+                       "Type 'help <command>' for command details.\n\n"
+                       "List of commands:\n"
+                       "\tmempool\n"
+                       "\tlink\n"
+                       "\tpipeline create\n"
+                       "\tpipeline port in\n"
+                       "\tpipeline port out\n"
+                       "\tpipeline build\n"
+                       "\tpipeline table update\n"
+                       "\tpipeline stats\n"
+                       "\tthread pipeline enable\n"
+                       "\tthread pipeline disable\n\n");
                return;
        }
 
@@ -1178,20 +1204,20 @@ cmd_help(char **tokens,
        }
 
        if ((strcmp(tokens[0], "pipeline") == 0) &&
-               ((n_tokens == 1) && (strcmp(tokens[2], "create")) == 0)) {
+               (n_tokens == 2) && (strcmp(tokens[1], "create") == 0)) {
                snprintf(out, out_size, "\n%s\n", cmd_pipeline_create_help);
                return;
        }
 
        if ((strcmp(tokens[0], "pipeline") == 0) &&
-               (strcmp(tokens[1], "port") == 0)) {
-               if ((n_tokens == 3) && (strcmp(tokens[2], "in")) == 0) {
+               (n_tokens == 3) && (strcmp(tokens[1], "port") == 0)) {
+               if (strcmp(tokens[2], "in") == 0) {
                        snprintf(out, out_size, "\n%s\n",
                                cmd_pipeline_port_in_help);
                        return;
                }
 
-               if ((n_tokens == 3) && (strcmp(tokens[2], "out")) == 0) {
+               if (strcmp(tokens[2], "out") == 0) {
                        snprintf(out, out_size, "\n%s\n",
                                cmd_pipeline_port_out_help);
                        return;
@@ -1199,20 +1225,22 @@ cmd_help(char **tokens,
        }
 
        if ((strcmp(tokens[0], "pipeline") == 0) &&
-               ((n_tokens >= 2) && (strcmp(tokens[2], "build")) == 0)) {
+               (n_tokens == 2) && (strcmp(tokens[1], "build") == 0)) {
                snprintf(out, out_size, "\n%s\n", cmd_pipeline_build_help);
                return;
        }
 
        if ((strcmp(tokens[0], "pipeline") == 0) &&
-               ((n_tokens >= 2) && (strcmp(tokens[2], "table")) == 0)) {
+               (n_tokens == 3) &&
+               (strcmp(tokens[1], "table") == 0) &&
+               (strcmp(tokens[2], "update") == 0)) {
                snprintf(out, out_size, "\n%s\n",
                        cmd_pipeline_table_update_help);
                return;
        }
 
        if ((strcmp(tokens[0], "pipeline") == 0) &&
-               ((n_tokens >= 2) && (strcmp(tokens[2], "stats")) == 0)) {
+               (n_tokens == 2) && (strcmp(tokens[1], "stats") == 0)) {
                snprintf(out, out_size, "\n%s\n", cmd_pipeline_stats_help);
                return;
        }