From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id A6FF3A046B for ; Mon, 24 Jun 2019 04:22:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9FBF91BF6B; Mon, 24 Jun 2019 04:22:03 +0200 (CEST) Received: from mail-pl1-f195.google.com (mail-pl1-f195.google.com [209.85.214.195]) by dpdk.org (Postfix) with ESMTP id 56E4F1BF6B for ; Mon, 24 Jun 2019 04:22:02 +0200 (CEST) Received: by mail-pl1-f195.google.com with SMTP id bi6so5976740plb.12 for ; Sun, 23 Jun 2019 19:22:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:in-reply-to:references; bh=BimbNEd/8yMsTK/cbPjq53lk4WigsPBEPAqIeoBQ+d0=; b=hcxACOJX1yw5ow2tfOuDJ90MhKAm5zu9R8EuytTWDupfxASvjKnMi1UomabzmhSgEH fdfg7232kM6+EVgEOfRwl3CTntJrHMrFIa8v/aOfx6ClA12Ag2HSR8NwSaKyu8IqwVt+ pV1P33bAmCA5CWbgKStCMaTqfqx6i+XhzPto+GHxqcji3D7o801IcBMaq+5qZ/aEBQDM /fk0laexGS+D3l+y18U73zpQNNTlf9MU6Oo165UXVOoRhw0WrVsHq5awQIhLYwk36rym Ufdn6GdF+vocSNkzoRhTF5STUxyu6tV++n5Tb+xO6gKfCu21Fc5ByXg51CACS0opCwlr Q89w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=BimbNEd/8yMsTK/cbPjq53lk4WigsPBEPAqIeoBQ+d0=; b=V5HVTjKkurEamV/hr2OSzK2rO5h7VA8cPiV92L7DRbeV1nevF3DUFbOr685C4nScx9 o3y8k1fheDBtIXvAvKDw/Cmh7IfoFmyTkkwaxostIvsRKoCfv3As3XhF9eUQ6VldGJzG y/ZzUrKuBJoAK/VpEqHlPjWrzFjW0nskwRFWnFjieEWNT2PO5s/l6DfXqAMhL47eHE8C garrZV77oT/a88IGeGGEp/FgNxwP075BL/TafNK67s/MwTQoAV/3DgG2D34NjTVIKPsT omwj9hFxpIKlqzSpM1Yqf+50LKWOL6P/LNK87eCOEAyYFLFjvq0Y2L6Ap0PeUnFmAnrx x18A== X-Gm-Message-State: APjAAAWObOlpyn0qtZ6RSK6Qz0XgQI6MixvpNss0c3mQvQMilUCbCuOQ mhsVXMnBc2sZPJHBUhup4nMie9BE X-Google-Smtp-Source: APXvYqz/M6DsEmCOY7s2OnnveFmNwprcQN7YS0MDHIFtEQ+yADzXBxtj4nRV96tr9RKoHAqSOHOXPQ== X-Received: by 2002:a17:902:2aab:: with SMTP id j40mr101350674plb.76.1561342921547; Sun, 23 Jun 2019 19:22:01 -0700 (PDT) Received: from localhost.localdomain ([192.47.164.146]) by smtp.gmail.com with ESMTPSA id e10sm5916173pfi.153.2019.06.23.19.22.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 23 Jun 2019 19:22:01 -0700 (PDT) From: yasufum.o@gmail.com To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Mon, 24 Jun 2019 11:21:47 +0900 Message-Id: <20190624022147.18639-3-yasufum.o@gmail.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190624022147.18639-1-yasufum.o@gmail.com> References: <20190624022147.18639-1-yasufum.o@gmail.com> Subject: [spp] [PATCH 2/2] shared/sec: rename command_conn.c X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: spp-bounces@dpdk.org Sender: "spp" From: Yasufumi Ogawa This patch is to rename `command_conn.c` and `command_conn.h`, and update Makefiles. Signed-off-by: Yasufumi Ogawa --- src/mirror/Makefile | 2 +- src/pcap/Makefile | 2 +- src/pcap/cmd_runner.c | 2 +- src/shared/secondary/spp_worker_th/cmd_runner.c | 2 +- .../secondary/spp_worker_th/{command_conn.c => conn_spp_ctl.c} | 2 +- .../secondary/spp_worker_th/{command_conn.h => conn_spp_ctl.h} | 0 src/vf/Makefile | 2 +- 7 files changed, 6 insertions(+), 6 deletions(-) rename src/shared/secondary/spp_worker_th/{command_conn.c => conn_spp_ctl.c} (99%) rename src/shared/secondary/spp_worker_th/{command_conn.h => conn_spp_ctl.h} (100%) diff --git a/src/mirror/Makefile b/src/mirror/Makefile index d1ae9ce..3e31cfa 100644 --- a/src/mirror/Makefile +++ b/src/mirror/Makefile @@ -19,7 +19,7 @@ SRCS-y += ../shared/common.c SRCS-y += ../shared/secondary/utils.c ../shared/secondary/add_port.c SRCS-y += $(SPP_WKT_DIR)/cmd_utils.c SRCS-y += $(SPP_WKT_DIR)/spp_port.c -SRCS-y += $(SPP_WKT_DIR)/command_conn.c +SRCS-y += $(SPP_WKT_DIR)/conn_spp_ctl.c SRCS-y += $(SPP_WKT_DIR)/cmd_parser.c SRCS-y += $(SPP_WKT_DIR)/cmd_runner.c SRCS-y += $(SPP_WKT_DIR)/string_buffer.c diff --git a/src/pcap/Makefile b/src/pcap/Makefile index 61f6f81..c3d5ae4 100644 --- a/src/pcap/Makefile +++ b/src/pcap/Makefile @@ -18,7 +18,7 @@ SRCS-y := spp_pcap.c SRCS-y += cmd_utils.c SRCS-y += cmd_runner.c cmd_parser.c SRCS-y += ../shared/common.c -SRCS-y += $(SPP_WKT_DIR)/command_conn.c +SRCS-y += $(SPP_WKT_DIR)/conn_spp_ctl.c SRCS-y += $(SPP_WKT_DIR)/spp_port.c SRCS-y += $(SPP_WKT_DIR)/ringlatencystats.c SRCS-y += $(SPP_WKT_DIR)/string_buffer.c diff --git a/src/pcap/cmd_runner.c b/src/pcap/cmd_runner.c index 9541cbb..8a1fb87 100644 --- a/src/pcap/cmd_runner.c +++ b/src/pcap/cmd_runner.c @@ -9,7 +9,7 @@ #include "shared/secondary/spp_worker_th/string_buffer.h" #include "spp_pcap.h" -#include "shared/secondary/spp_worker_th/command_conn.h" +#include "shared/secondary/spp_worker_th/conn_spp_ctl.h" #include "cmd_parser.h" #include "cmd_runner.h" diff --git a/src/shared/secondary/spp_worker_th/cmd_runner.c b/src/shared/secondary/spp_worker_th/cmd_runner.c index 92d727b..1d1ec49 100644 --- a/src/shared/secondary/spp_worker_th/cmd_runner.c +++ b/src/shared/secondary/spp_worker_th/cmd_runner.c @@ -13,7 +13,7 @@ #include "spp_port.h" #include "string_buffer.h" -#include "command_conn.h" +#include "conn_spp_ctl.h" #include "cmd_parser.h" #include "cmd_runner.h" diff --git a/src/shared/secondary/spp_worker_th/command_conn.c b/src/shared/secondary/spp_worker_th/conn_spp_ctl.c similarity index 99% rename from src/shared/secondary/spp_worker_th/command_conn.c rename to src/shared/secondary/spp_worker_th/conn_spp_ctl.c index b80c54b..030da92 100644 --- a/src/shared/secondary/spp_worker_th/command_conn.c +++ b/src/shared/secondary/spp_worker_th/conn_spp_ctl.c @@ -14,7 +14,7 @@ #include "shared/common.h" #include "string_buffer.h" -#include "command_conn.h" +#include "conn_spp_ctl.h" #define RTE_LOGTYPE_SPP_COMMAND_PROC RTE_LOGTYPE_USER1 diff --git a/src/shared/secondary/spp_worker_th/command_conn.h b/src/shared/secondary/spp_worker_th/conn_spp_ctl.h similarity index 100% rename from src/shared/secondary/spp_worker_th/command_conn.h rename to src/shared/secondary/spp_worker_th/conn_spp_ctl.h diff --git a/src/vf/Makefile b/src/vf/Makefile index bdeff98..faf72ee 100644 --- a/src/vf/Makefile +++ b/src/vf/Makefile @@ -18,7 +18,7 @@ SRCS-y := spp_vf.c classifier_mac.c spp_forward.c SRCS-y += $(SPP_WKT_DIR)/string_buffer.c SRCS-y += $(SPP_WKT_DIR)/ringlatencystats.c SRCS-y += $(SPP_WKT_DIR)/spp_port.c -SRCS-y += $(SPP_WKT_DIR)/command_conn.c +SRCS-y += $(SPP_WKT_DIR)/conn_spp_ctl.c SRCS-y += $(SPP_WKT_DIR)/cmd_parser.c SRCS-y += $(SPP_WKT_DIR)/cmd_runner.c SRCS-y += $(SPP_WKT_DIR)/cmd_utils.c -- 2.17.1