From e107e82eaccbbfd829a2cc77080df851ca040dbc Mon Sep 17 00:00:00 2001 From: Anatoly Burakov Date: Wed, 28 May 2014 18:32:44 +0100 Subject: [PATCH] examples: rename ipv4_frag example to ip_fragmentation Signed-off-by: Anatoly Burakov Acked-by: Thomas Monjalon --- examples/Makefile | 2 +- examples/{ipv4_frag => ip_fragmentation}/Makefile | 2 +- examples/{ipv4_frag => ip_fragmentation}/main.c | 0 examples/{ipv4_frag => ip_fragmentation}/main.h | 0 4 files changed, 2 insertions(+), 2 deletions(-) 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/Makefile b/examples/Makefile index 190ecc4a13..4353b840a2 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -44,7 +44,7 @@ endif DIRS-y += exception_path DIRS-y += helloworld DIRS-y += ip_reassembly -DIRS-$(CONFIG_RTE_MBUF_SCATTER_GATHER) += ipv4_frag +DIRS-$(CONFIG_RTE_MBUF_SCATTER_GATHER) += ip_fragmentation DIRS-$(CONFIG_RTE_MBUF_SCATTER_GATHER) += ipv4_multicast DIRS-$(CONFIG_RTE_LIBRTE_KNI) += kni DIRS-y += l2fwd 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 475c5ea446..6d729f0fee 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 -- 2.20.1