From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 16F99A10DA for ; Fri, 2 Aug 2019 11:34:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0D6021C23C; Fri, 2 Aug 2019 11:34:08 +0200 (CEST) Received: from mail-pf1-f194.google.com (mail-pf1-f194.google.com [209.85.210.194]) by dpdk.org (Postfix) with ESMTP id 69F591C234 for ; Fri, 2 Aug 2019 11:34:06 +0200 (CEST) Received: by mail-pf1-f194.google.com with SMTP id q10so35727180pff.9 for ; Fri, 02 Aug 2019 02:34:06 -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=3ssPFM1f39SSvDztPWqI0VfqY86CW0l8rsPOjY/nvbI=; b=nLwKbKFmP3nKqSrpVyxZMWCwJOXm4o0pjScpMWHBxovAkibPT3IM0R/jzbPAokekw2 CH2ITLOs7VT+Dx/Zcr6vXTpbWc6xD/NJ6OxjEWRoceLtV3uic5yAvRV3FF4TeNDtxSkp 5sNZHNZuTaMAwx3+upFRCxGqFTBjfwvyboOMfhWQps5zCvBJWKaFcnJl0wCCQ2cMLMGg emOyZag2wx6ZgDoHfg2UmAngZPFHjnEuhv7vwpvEpKYCk0+hblWRGZAcPdEPecxoXcWH PuNAzIiGYPvc64hGEbjzD3l8bBo+gyzLZMS7RVuIeoA6WRIdgKDyTCKq/sVyGhQi010z KUtQ== 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=3ssPFM1f39SSvDztPWqI0VfqY86CW0l8rsPOjY/nvbI=; b=DwJxOnA26H6EXrPN8x0IL+VYctN4wPz/xtcRPf8bWjUjvLahuYWdFqo+1qT2MEJygf p6RtGF6n9j/NfjKlb+KrmVsNybWnoBNXtZXyQu/0kww73v9n32py04KLhWthlASn+Kty 58MxiXEA856ysbBWi5OWCDcbwoGJ2xUm6jFxqoQe7YKlGH8U8D3TXzRiuNxmS2aZ77Fa YJ1kbub4jkFEOBkEOjtrzHwR2HTV3hws1ltXZ8gzgzRzg1kaRYORXKQiqHQTPR9ccJzq hW4da6REJ/P8cCTQvDTETDUoDgmjqT+hJI3nm2sN8M8OjqBye5TmkdzAXmFpzvRaZ8Un CFzg== X-Gm-Message-State: APjAAAVdSI7Vpsx15k8fkJwZT7OgZZLTh1pb63pdSw5LAJznVK6uynRe xVpUT/rgqmZ3mxo9G2CTQ++P3In3 X-Google-Smtp-Source: APXvYqx4iS66ImUzztY06+Nak+NHmrcoVYGGpg06iEpRw+6X+LRJD6TBYgO0qTSvOYEuE/lWB+BQgQ== X-Received: by 2002:a17:90a:ac14:: with SMTP id o20mr3522830pjq.114.1564738445560; Fri, 02 Aug 2019 02:34:05 -0700 (PDT) Received: from localhost.localdomain ([2400:4050:c8c2:de00:9c1a:eba9:3129:63d2]) by smtp.gmail.com with ESMTPSA id n10sm1458509pgv.67.2019.08.02.02.34.03 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Fri, 02 Aug 2019 02:34:04 -0700 (PDT) From: Yasufumi Ogawa To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Fri, 2 Aug 2019 18:33:53 +0900 Message-Id: <20190802093358.13696-2-yasufum.o@gmail.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190802093358.13696-1-yasufum.o@gmail.com> References: <20190802093358.13696-1-yasufum.o@gmail.com> Subject: [spp] [PATCH 1/6] spp_vf: rename file classifier_mac 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" This update is to change files named as `classifier_mac` to `classifier` because claffisication only supports MAC and `_mac` has no meaning. Signed-off-by: Yasufumi Ogawa --- src/vf/Makefile | 2 +- src/vf/{classifier_mac.c => classifier.c} | 2 +- src/vf/{classifier_mac.h => classifier.h} | 0 src/vf/spp_vf.c | 2 +- src/vf/vf_cmd_runner.c | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/vf/{classifier_mac.c => classifier.c} (99%) rename src/vf/{classifier_mac.h => classifier.h} (100%) diff --git a/src/vf/Makefile b/src/vf/Makefile index 92d2854..5981d62 100644 --- a/src/vf/Makefile +++ b/src/vf/Makefile @@ -15,7 +15,7 @@ SPP_SEC_DIR = ../shared/secondary SPP_WKT_DIR = ../shared/secondary/spp_worker_th # all source are stored in SRCS-y -SRCS-y := spp_vf.c classifier_mac.c forwarder.c +SRCS-y := spp_vf.c classifier.c forwarder.c SRCS-y += $(SPP_SEC_DIR)/string_buffer.c SRCS-y += $(SPP_SEC_DIR)/json_helper.c SRCS-y += $(SPP_SEC_DIR)/utils.c $(SPP_SEC_DIR)/add_port.c diff --git a/src/vf/classifier_mac.c b/src/vf/classifier.c similarity index 99% rename from src/vf/classifier_mac.c rename to src/vf/classifier.c index f3be5b6..49c7d01 100644 --- a/src/vf/classifier_mac.c +++ b/src/vf/classifier.c @@ -21,7 +21,7 @@ #include #include -#include "classifier_mac.h" +#include "classifier.h" #include "spp_vf.h" #include "shared/secondary/return_codes.h" #include "shared/secondary/string_buffer.h" diff --git a/src/vf/classifier_mac.h b/src/vf/classifier.h similarity index 100% rename from src/vf/classifier_mac.h rename to src/vf/classifier.h diff --git a/src/vf/spp_vf.c b/src/vf/spp_vf.c index caf4678..2091023 100644 --- a/src/vf/spp_vf.c +++ b/src/vf/spp_vf.c @@ -7,7 +7,7 @@ #include #include "spp_vf.h" -#include "classifier_mac.h" +#include "classifier.h" #include "forwarder.h" #include "shared/secondary/utils.h" #include "shared/secondary/spp_worker_th/cmd_utils.h" diff --git a/src/vf/vf_cmd_runner.c b/src/vf/vf_cmd_runner.c index 16328f4..9536a80 100644 --- a/src/vf/vf_cmd_runner.c +++ b/src/vf/vf_cmd_runner.c @@ -2,7 +2,7 @@ * Copyright(c) 2019 Nippon Telegraph and Telephone Corporation */ -#include "classifier_mac.h" +#include "classifier.h" #include "forwarder.h" #include "shared/secondary/return_codes.h" #include "shared/secondary/json_helper.h" -- 2.17.1