summaryrefslogtreecommitdiff
path: root/libdde_linux26/contrib/include/net/tc_act
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:07:53 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:07:53 +0000
commit4fbe7358c7747a9165f776eb19addbb9baf7def2 (patch)
treebc7076b4f6d10c2cc2942539bb666e50f0b66954 /libdde_linux26/contrib/include/net/tc_act
parent21adb5284111190057db245cfc2b54091920c373 (diff)
rename libdde_linux26 into libdde-linux26 to make dpkg-source happy
Diffstat (limited to 'libdde_linux26/contrib/include/net/tc_act')
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_defact.h14
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_gact.h17
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_ipt.h17
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_mirred.h16
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_nat.h21
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_pedit.h15
-rw-r--r--libdde_linux26/contrib/include/net/tc_act/tc_skbedit.h34
7 files changed, 0 insertions, 134 deletions
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_defact.h b/libdde_linux26/contrib/include/net/tc_act/tc_defact.h
deleted file mode 100644
index 65f024b8..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_defact.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef __NET_TC_DEF_H
-#define __NET_TC_DEF_H
-
-#include <net/act_api.h>
-
-struct tcf_defact {
- struct tcf_common common;
- u32 tcfd_datalen;
- void *tcfd_defdata;
-};
-#define to_defact(pc) \
- container_of(pc, struct tcf_defact, common)
-
-#endif /* __NET_TC_DEF_H */
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_gact.h b/libdde_linux26/contrib/include/net/tc_act/tc_gact.h
deleted file mode 100644
index 9e3f6767..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_gact.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef __NET_TC_GACT_H
-#define __NET_TC_GACT_H
-
-#include <net/act_api.h>
-
-struct tcf_gact {
- struct tcf_common common;
-#ifdef CONFIG_GACT_PROB
- u16 tcfg_ptype;
- u16 tcfg_pval;
- int tcfg_paction;
-#endif
-};
-#define to_gact(pc) \
- container_of(pc, struct tcf_gact, common)
-
-#endif /* __NET_TC_GACT_H */
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_ipt.h b/libdde_linux26/contrib/include/net/tc_act/tc_ipt.h
deleted file mode 100644
index f7d25dfc..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_ipt.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef __NET_TC_IPT_H
-#define __NET_TC_IPT_H
-
-#include <net/act_api.h>
-
-struct xt_entry_target;
-
-struct tcf_ipt {
- struct tcf_common common;
- u32 tcfi_hook;
- char *tcfi_tname;
- struct xt_entry_target *tcfi_t;
-};
-#define to_ipt(pc) \
- container_of(pc, struct tcf_ipt, common)
-
-#endif /* __NET_TC_IPT_H */
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_mirred.h b/libdde_linux26/contrib/include/net/tc_act/tc_mirred.h
deleted file mode 100644
index ceac661c..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_mirred.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef __NET_TC_MIR_H
-#define __NET_TC_MIR_H
-
-#include <net/act_api.h>
-
-struct tcf_mirred {
- struct tcf_common common;
- int tcfm_eaction;
- int tcfm_ifindex;
- int tcfm_ok_push;
- struct net_device *tcfm_dev;
-};
-#define to_mirred(pc) \
- container_of(pc, struct tcf_mirred, common)
-
-#endif /* __NET_TC_MIR_H */
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_nat.h b/libdde_linux26/contrib/include/net/tc_act/tc_nat.h
deleted file mode 100644
index 4a691f34..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_nat.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __NET_TC_NAT_H
-#define __NET_TC_NAT_H
-
-#include <linux/types.h>
-#include <net/act_api.h>
-
-struct tcf_nat {
- struct tcf_common common;
-
- __be32 old_addr;
- __be32 new_addr;
- __be32 mask;
- u32 flags;
-};
-
-static inline struct tcf_nat *to_tcf_nat(struct tcf_common *pc)
-{
- return container_of(pc, struct tcf_nat, common);
-}
-
-#endif /* __NET_TC_NAT_H */
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_pedit.h b/libdde_linux26/contrib/include/net/tc_act/tc_pedit.h
deleted file mode 100644
index e6f6e159..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_pedit.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef __NET_TC_PED_H
-#define __NET_TC_PED_H
-
-#include <net/act_api.h>
-
-struct tcf_pedit {
- struct tcf_common common;
- unsigned char tcfp_nkeys;
- unsigned char tcfp_flags;
- struct tc_pedit_key *tcfp_keys;
-};
-#define to_pedit(pc) \
- container_of(pc, struct tcf_pedit, common)
-
-#endif /* __NET_TC_PED_H */
diff --git a/libdde_linux26/contrib/include/net/tc_act/tc_skbedit.h b/libdde_linux26/contrib/include/net/tc_act/tc_skbedit.h
deleted file mode 100644
index 6abb3ed3..00000000
--- a/libdde_linux26/contrib/include/net/tc_act/tc_skbedit.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2008, Intel Corporation.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
- *
- * Author: Alexander Duyck <alexander.h.duyck@intel.com>
- */
-
-#ifndef __NET_TC_SKBEDIT_H
-#define __NET_TC_SKBEDIT_H
-
-#include <net/act_api.h>
-
-struct tcf_skbedit {
- struct tcf_common common;
- u32 flags;
- u32 priority;
- u16 queue_mapping;
-};
-#define to_skbedit(pc) \
- container_of(pc, struct tcf_skbedit, common)
-
-#endif /* __NET_TC_SKBEDIT_H */