From patchwork Mon Nov 17 06:07:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tetsuya Mukawa X-Patchwork-Id: 1318 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id DB3877FB4; Mon, 17 Nov 2014 06:57:15 +0100 (CET) Received: from mail-pd0-f170.google.com (mail-pd0-f170.google.com [209.85.192.170]) by dpdk.org (Postfix) with ESMTP id D1C337FA1 for ; Mon, 17 Nov 2014 06:57:13 +0100 (CET) Received: by mail-pd0-f170.google.com with SMTP id fp1so4356418pdb.1 for ; Sun, 16 Nov 2014 22:07:28 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=SEyXOYclV3mKA3aENGc9BudEE3bJLEiYja6wQyNrs2A=; b=CVN8qQwcMtMIuIYC1ketHzWbPqahKOOwu/Mjcyw9mfqpGhIdWX/u8kZ3k3NJHba1PV MmdEi+inZNhuPUC89ZOhFFOvKnBtHOitVzmfrGcRw+Oq87BtvjX3Fo8xi+ASGHN9nqBU cKrZDu+B1o8eBP+O15iJN7I3TDu+DyuwAGOn9UzFTfjnOlBfhFmR5h2JfZ2ZfbH9ZeAf clWpPIM6iy6fGe0Sfc4Z8Uoq8IVIZF/bQ/k0JThViIVOPxM5kzopOdWH2RbCPM2Xy6yY S+kxGu/dPcH3dPQj9X/RpEvAGtLDhppNKzZAMqItv7cNuQvKHhEz0gILbGmMpAYOJqRD 4goQ== X-Gm-Message-State: ALoCoQmGpmHlbnJ90IkK6fdZeJPzM8aKJl6N+6MoKR5gXD4MxURGuiTMj+o7ckxfHDy7FKtTX5/Z X-Received: by 10.70.54.161 with SMTP id k1mr27235256pdp.110.1416204448602; Sun, 16 Nov 2014 22:07:28 -0800 (PST) Received: from localhost.localdomain (napt.igel.co.jp. [219.106.231.132]) by mx.google.com with ESMTPSA id oe10sm33953028pdb.66.2014.11.16.22.07.27 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 16 Nov 2014 22:07:28 -0800 (PST) From: Tetsuya Mukawa To: dev@dpdk.org Date: Mon, 17 Nov 2014 15:07:17 +0900 Message-Id: <1416204438-4327-1-git-send-email-mukawa@igel.co.jp> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1416014087-22499-1-git-send-email-huawei.xie@intel.com> References: <1416014087-22499-1-git-send-email-huawei.xie@intel.com> Subject: [dpdk-dev] [RFC PATCH 1/2] lib/librte_vhost: change macro name of include guard. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch changes include macro name like following. - "_VIRTIO_NET_H_" > "_RTE_VIRTIO_NET_H_" --- lib/librte_vhost/rte_virtio_net.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_vhost/rte_virtio_net.h b/lib/librte_vhost/rte_virtio_net.h index 7d7d001..a09533d 100644 --- a/lib/librte_vhost/rte_virtio_net.h +++ b/lib/librte_vhost/rte_virtio_net.h @@ -31,8 +31,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _VIRTIO_NET_H_ -#define _VIRTIO_NET_H_ +#ifndef _RTE_VIRTIO_NET_H_ +#define _RTE_VIRTIO_NET_H_ #include #include @@ -189,4 +189,4 @@ uint32_t rte_vhost_enqueue_burst(struct virtio_net *dev, uint16_t queue_id, uint32_t rte_vhost_dequeue_burst(struct virtio_net *dev, uint16_t queue_id, struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint32_t count); -#endif /* _VIRTIO_NET_H_ */ +#endif /* _RTE_VIRTIO_NET_H_ */