From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 6A3B4B0AA for ; Wed, 28 May 2014 19:32:41 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 28 May 2014 10:27:41 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.98,929,1392192000"; d="scan'208";a="547911103" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga002.jf.intel.com with ESMTP; 28 May 2014 10:32:50 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s4SHWnjf004057; Wed, 28 May 2014 18:32:49 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id s4SHWnTK031725; Wed, 28 May 2014 18:32:49 +0100 Received: (from aburakov@localhost) by sivswdev02.ir.intel.com with id s4SHWnHV031721; Wed, 28 May 2014 18:32:49 +0100 From: Anatoly Burakov To: dev@dpdk.org Date: Wed, 28 May 2014 18:32:44 +0100 Message-Id: <63a596828fc97187450c67d81739a07e20818574.1401298292.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH 10/13] examples: renamed ipv4_frag example app to ip_fragmentation 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: , X-List-Received-Date: Wed, 28 May 2014 17:32:43 -0000 Signed-off-by: Anatoly Burakov --- examples/{ipv4_frag => ip_fragmentation}/Makefile | 2 +- examples/{ipv4_frag => ip_fragmentation}/main.c | 0 examples/{ipv4_frag => ip_fragmentation}/main.h | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename examples/{ipv4_frag => ip_fragmentation}/Makefile (99%) rename examples/{ipv4_frag => ip_fragmentation}/main.c (100%) rename examples/{ipv4_frag => ip_fragmentation}/main.h (100%) diff --git a/examples/ipv4_frag/Makefile b/examples/ip_fragmentation/Makefile similarity index 99% rename from examples/ipv4_frag/Makefile rename to examples/ip_fragmentation/Makefile index 5fc4d9e..1482772 100644 --- a/examples/ipv4_frag/Makefile +++ b/examples/ip_fragmentation/Makefile @@ -44,7 +44,7 @@ $(error This application requires RTE_MBUF_SCATTER_GATHER to be enabled) endif # binary name -APP = ipv4_frag +APP = ip_fragmentation # all source are stored in SRCS-y SRCS-y := main.c diff --git a/examples/ipv4_frag/main.c b/examples/ip_fragmentation/main.c similarity index 100% rename from examples/ipv4_frag/main.c rename to examples/ip_fragmentation/main.c diff --git a/examples/ipv4_frag/main.h b/examples/ip_fragmentation/main.h similarity index 100% rename from examples/ipv4_frag/main.h rename to examples/ip_fragmentation/main.h -- 1.8.1.4