Fix skel files to use <vppinfra/*.h> instead of <clib/*.h> when 24/524/2
authorDave Wallace <[email protected]>
Mon, 14 Mar 2016 04:10:24 +0000 (00:10 -0400)
committerGerrit Code Review <[email protected]>
Mon, 14 Mar 2016 09:12:23 +0000 (09:12 +0000)
including vppinfra header files.

Change-Id: I961c602e0ccd2048fac633b5aeebb8c3cd0899fb
Signed-off-by: Dave Wallace <[email protected]>
build-root/emacs-lisp/dual-loop-skel.el
build-root/emacs-lisp/pipe-skel.el
build-root/emacs-lisp/tunnel-encap-skel.el
build-root/emacs-lisp/tunnel-h-skel.el

index fafd21a..a501727 100644 (file)
@@ -11,14 +11,13 @@ nil
 #include <vlib/vlib.h>
 #include <vnet/vnet.h>
 #include <vnet/pg/pg.h>
-#include <clib/error.h>
 
 #include <vnet/ip/ip.h>
 #include <vnet/ethernet/ethernet.h>
 
-#include <clib/hash.h>
-#include <clib/error.h>
-#include <clib/elog.h>
+#include <vppinfra/hash.h>
+#include <vppinfra/error.h>
+#include <vppinfra/elog.h>
 
 typedef struct {
   /* convenience */
index 8ad25c0..bda6e97 100644 (file)
@@ -10,7 +10,7 @@ nil
 '(setq nstages (skeleton-read "Number of pipeline stages: "))
 "
 #include <vlib/vlib.h>
-#include <clib/error.h>
+#include <vppinfra/error.h>
 
 /*
  * Dump these counters via the \"show error\" CLI command 
index 5933153..baf8241 100644 (file)
@@ -10,8 +10,8 @@ nil
 '(setq encap-stack (replace-regexp-in-string "_" "-" encap_stack))
 '(setq ENCAP-STACK (upcase encap-stack))
 "
-#include <clib/error.h>
-#include <clib/hash.h>
+#include <vppinfra/error.h>
+#include <vppinfra/hash.h>
 #include <vnet/vnet.h>
 #include <vnet/ip/ip.h>
 #include <vnet/ethernet/ethernet.h>
index 7e33309..f03d040 100644 (file)
@@ -12,8 +12,8 @@ nil
 #ifndef included_vnet_" encap_stack "_h
 #define included_vnet_" encap_stack "_h
 
-#include <clib/error.h>
-#include <clib/hash.h>
+#include <vppinfra/error.h>
+#include <vppinfra/hash.h>
 #include <vnet/vnet.h>
 #include <vnet/ip/ip.h>
 #include <vnet/l2/l2_input.h>