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 1F780A0096 for ; Wed, 8 May 2019 04:02:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1516FA49; Wed, 8 May 2019 04:02:26 +0200 (CEST) Received: from tama500.ecl.ntt.co.jp (tama500.ecl.ntt.co.jp [129.60.39.148]) by dpdk.org (Postfix) with ESMTP id 6C1B9DE3 for ; Wed, 8 May 2019 04:02:23 +0200 (CEST) Received: from vc1.ecl.ntt.co.jp (vc1.ecl.ntt.co.jp [129.60.86.153]) by tama500.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id x4822M8K023024; Wed, 8 May 2019 11:02:22 +0900 Received: from vc1.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 54C32EA7096; Wed, 8 May 2019 11:02:22 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 47880EA705C; Wed, 8 May 2019 11:02:22 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: spp@dpdk.org, ferruh.yigit@intel.com, ogawa.yasufumi@lab.ntt.co.jp Date: Wed, 8 May 2019 11:00:03 +0900 Message-Id: <1557280806-7672-2-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1557280806-7672-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> References: <1557280806-7672-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-TM-AS-MML: disable Subject: [spp] [PATCH 1/4] spp_vf: move common of vf siblings to shared dir 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 Common files of spp_vf and its siblings are located under `src/vf/common/`, but it should be moved under `src/shared/` because it is used by processes other than spp_vf. This update is to move common files to `src/shared/secondary/spp_worker_th`. The directory name means common files of worker threads of SPP secondary processes. Signed-off-by: Yasufumi Ogawa --- src/{vf/common => shared/secondary/spp_worker_th}/command_conn.c | 0 src/{vf/common => shared/secondary/spp_worker_th}/command_conn.h | 0 src/{vf/common => shared/secondary/spp_worker_th}/command_dec.c | 0 src/{vf/common => shared/secondary/spp_worker_th}/command_dec.h | 0 src/{vf/common => shared/secondary/spp_worker_th}/command_proc.c | 0 src/{vf/common => shared/secondary/spp_worker_th}/command_proc.h | 0 .../common => shared/secondary/spp_worker_th}/ringlatencystats.c | 0 .../common => shared/secondary/spp_worker_th}/ringlatencystats.h | 0 src/{vf/common => shared/secondary/spp_worker_th}/spp_port.c | 0 src/{vf/common => shared/secondary/spp_worker_th}/spp_port.h | 0 src/{vf/common => shared/secondary/spp_worker_th}/spp_proc.c | 0 src/{vf/common => shared/secondary/spp_worker_th}/spp_proc.h | 0 src/{vf/common => shared/secondary/spp_worker_th}/string_buffer.c | 0 src/{vf/common => shared/secondary/spp_worker_th}/string_buffer.h | 0 14 files changed, 0 insertions(+), 0 deletions(-) rename src/{vf/common => shared/secondary/spp_worker_th}/command_conn.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/command_conn.h (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/command_dec.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/command_dec.h (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/command_proc.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/command_proc.h (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/ringlatencystats.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/ringlatencystats.h (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/spp_port.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/spp_port.h (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/spp_proc.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/spp_proc.h (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/string_buffer.c (100%) rename src/{vf/common => shared/secondary/spp_worker_th}/string_buffer.h (100%) diff --git a/src/vf/common/command_conn.c b/src/shared/secondary/spp_worker_th/command_conn.c similarity index 100% rename from src/vf/common/command_conn.c rename to src/shared/secondary/spp_worker_th/command_conn.c diff --git a/src/vf/common/command_conn.h b/src/shared/secondary/spp_worker_th/command_conn.h similarity index 100% rename from src/vf/common/command_conn.h rename to src/shared/secondary/spp_worker_th/command_conn.h diff --git a/src/vf/common/command_dec.c b/src/shared/secondary/spp_worker_th/command_dec.c similarity index 100% rename from src/vf/common/command_dec.c rename to src/shared/secondary/spp_worker_th/command_dec.c diff --git a/src/vf/common/command_dec.h b/src/shared/secondary/spp_worker_th/command_dec.h similarity index 100% rename from src/vf/common/command_dec.h rename to src/shared/secondary/spp_worker_th/command_dec.h diff --git a/src/vf/common/command_proc.c b/src/shared/secondary/spp_worker_th/command_proc.c similarity index 100% rename from src/vf/common/command_proc.c rename to src/shared/secondary/spp_worker_th/command_proc.c diff --git a/src/vf/common/command_proc.h b/src/shared/secondary/spp_worker_th/command_proc.h similarity index 100% rename from src/vf/common/command_proc.h rename to src/shared/secondary/spp_worker_th/command_proc.h diff --git a/src/vf/common/ringlatencystats.c b/src/shared/secondary/spp_worker_th/ringlatencystats.c similarity index 100% rename from src/vf/common/ringlatencystats.c rename to src/shared/secondary/spp_worker_th/ringlatencystats.c diff --git a/src/vf/common/ringlatencystats.h b/src/shared/secondary/spp_worker_th/ringlatencystats.h similarity index 100% rename from src/vf/common/ringlatencystats.h rename to src/shared/secondary/spp_worker_th/ringlatencystats.h diff --git a/src/vf/common/spp_port.c b/src/shared/secondary/spp_worker_th/spp_port.c similarity index 100% rename from src/vf/common/spp_port.c rename to src/shared/secondary/spp_worker_th/spp_port.c diff --git a/src/vf/common/spp_port.h b/src/shared/secondary/spp_worker_th/spp_port.h similarity index 100% rename from src/vf/common/spp_port.h rename to src/shared/secondary/spp_worker_th/spp_port.h diff --git a/src/vf/common/spp_proc.c b/src/shared/secondary/spp_worker_th/spp_proc.c similarity index 100% rename from src/vf/common/spp_proc.c rename to src/shared/secondary/spp_worker_th/spp_proc.c diff --git a/src/vf/common/spp_proc.h b/src/shared/secondary/spp_worker_th/spp_proc.h similarity index 100% rename from src/vf/common/spp_proc.h rename to src/shared/secondary/spp_worker_th/spp_proc.h diff --git a/src/vf/common/string_buffer.c b/src/shared/secondary/spp_worker_th/string_buffer.c similarity index 100% rename from src/vf/common/string_buffer.c rename to src/shared/secondary/spp_worker_th/string_buffer.c diff --git a/src/vf/common/string_buffer.h b/src/shared/secondary/spp_worker_th/string_buffer.h similarity index 100% rename from src/vf/common/string_buffer.h rename to src/shared/secondary/spp_worker_th/string_buffer.h -- 2.17.1