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 422DEA0487 for ; Mon, 1 Jul 2019 06:12:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3994A2AB; Mon, 1 Jul 2019 06:12:18 +0200 (CEST) Received: from mail-pf1-f174.google.com (mail-pf1-f174.google.com [209.85.210.174]) by dpdk.org (Postfix) with ESMTP id C79852AB for ; Mon, 1 Jul 2019 06:12:16 +0200 (CEST) Received: by mail-pf1-f174.google.com with SMTP id x15so5872586pfq.0 for ; Sun, 30 Jun 2019 21:12:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=p4IskviPcPI54BV1+IEQvP8YhHyA7gItgBoSDGDZz4E=; b=bKidiR7ZYV6NCrr7LNoi7kVOyOAqbZZub3F1Ypk5auy+s+OFnxdjgSsMTcpb6yjT69 hfN1cGhp+ZuGjSu/KF3F7iQVo2h9wRsUw0W4f/EIuc5PtbMuaQ77Jwmr8XJm6PHkd1j2 +q4TZUuG9BbpfttqELwWHGLEvZFzkAPKsyQjqtPXLQxid3b9NljAKqxbrXLYM8rSTpCX F6xs55rguCtehEyHrOcXnbgfcYLgDxpDH7XM+BLNEKpEZU1RuDDObM/bMKfLtXcfaSWa 7UyMe2LRySJT/NmIn5qwwbjeRRFt8tfnaxKBba65xGgXmCkiO846Du5pGjbPpP6cJiEb aLag== 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; bh=p4IskviPcPI54BV1+IEQvP8YhHyA7gItgBoSDGDZz4E=; b=a1GBRhnV76TsESbc0bgFkxpwNyItsUnwU1t13IUGOLABFMBQAM7zRI84UHOiiaPHO/ PmhFSSnJcQBFVneXJeh23sElZ0vh+wtUEblT7lM8lA+r4grTgEFDxKXDpadpFfX/GoA/ 93fTOKivGNhqODgW5gZVjRbeovFakLEiiE3ey99C2xa1xtJ7ih5KVs/74M1ju2Hlz21m IxrNIGJ1xhvhhHq7Vdh6ifnPOrr1Rhmk/sxF0Z/8YjxiISgG907TMaeyUSyGOjnmPhtv fxnq5h43S2BaPoL0FI9RNuueRbuhWgSbE4qUt+5z4V8krTlhomeYBzFoeE8FfbfLgE/B EGHA== X-Gm-Message-State: APjAAAUAF4OzcgOemHsPP7ztB69qMpwpoABy2cMem9KcQArJAHe9el+m r9X0G7ZY6fjcKJ39O9TULp4HirRm X-Google-Smtp-Source: APXvYqyaRgc2rq8UiL0F1n/wGhImLnskqPetmgYuftr3nM39YCk7dyNY+mHTuzWeb5r2gR65FRACJQ== X-Received: by 2002:a17:90a:346c:: with SMTP id o99mr27975365pjb.20.1561954336005; Sun, 30 Jun 2019 21:12:16 -0700 (PDT) Received: from localhost.localdomain ([192.47.164.146]) by smtp.gmail.com with ESMTPSA id j21sm9531126pfh.86.2019.06.30.21.12.14 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 30 Jun 2019 21:12:15 -0700 (PDT) From: yasufum.o@gmail.com To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Mon, 1 Jul 2019 13:12:09 +0900 Message-Id: <20190701041211.34060-1-yasufum.o@gmail.com> X-Mailer: git-send-email 2.17.1 Subject: [spp] [PATCH 0/2] Fix compile errors of ring latency stats 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 For adding burst functions and changing dir structure, it causes compile errors if CFLAG DSPP_RINGLATENCYSTATS_ENABLE is activated in each of Makefiles. This update is to fix this issue. Yasufumi Ogawa (2): shared/sec: fix compile error of ringlatencystats shared/sec: remove source and header of spp_port src/mirror/Makefile | 1 - src/mirror/spp_mirror.c | 37 +++++++-- src/pcap/Makefile | 1 - src/pcap/spp_pcap.c | 13 ++- .../spp_worker_th/cmd_res_formatter.c | 1 - .../secondary/spp_worker_th/cmd_runner.c | 1 - .../secondary/spp_worker_th/cmd_utils.c | 41 ---------- .../secondary/spp_worker_th/cmd_utils.h | 5 -- .../secondary/spp_worker_th/port_capability.c | 60 ++++++++++---- .../secondary/spp_worker_th/port_capability.h | 4 +- .../spp_worker_th/ringlatencystats.c | 81 +++++++++++++++++++ .../spp_worker_th/ringlatencystats.h | 65 +++++++++++++++ src/shared/secondary/spp_worker_th/spp_port.c | 57 ------------- src/shared/secondary/spp_worker_th/spp_port.h | 34 -------- src/vf/Makefile | 2 +- src/vf/classifier_mac.c | 16 ++++ src/vf/forwarder.c | 18 ++++- src/vf/spp_vf.c | 9 ++- 18 files changed, 272 insertions(+), 174 deletions(-) delete mode 100644 src/shared/secondary/spp_worker_th/spp_port.c delete mode 100644 src/shared/secondary/spp_worker_th/spp_port.h -- 2.17.1