Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dc05a564 authored by Patrick McHardy's avatar Patrick McHardy
Browse files

Merge branch 'master' of git://dev.medozas.de/linux

parents be39ee11 e2fe35c1
Loading
Loading
Loading
Loading
+0 −25
Original line number Diff line number Diff line
@@ -235,31 +235,6 @@ Who: Thomas Gleixner <tglx@linutronix.de>
---------------------------

What (Why):
	- include/linux/netfilter_ipv4/ipt_TOS.h ipt_tos.h header files
	  (superseded by xt_TOS/xt_tos target & match)

	- "forwarding" header files like ipt_mac.h in
	  include/linux/netfilter_ipv4/ and include/linux/netfilter_ipv6/

	- xt_CONNMARK match revision 0
	  (superseded by xt_CONNMARK match revision 1)

	- xt_MARK target revisions 0 and 1
	  (superseded by xt_MARK match revision 2)

	- xt_connmark match revision 0
	  (superseded by xt_connmark match revision 1)

	- xt_conntrack match revision 0
	  (superseded by xt_conntrack match revision 1)

	- xt_iprange match revision 0,
	  include/linux/netfilter_ipv4/ipt_iprange.h
	  (superseded by xt_iprange match revision 1)

	- xt_mark match revision 0
	  (superseded by xt_mark match revision 1)

	- xt_recent: the old ipt_recent proc dir
	  (superseded by /proc/net/xt_recent)

+1 −1
Original line number Diff line number Diff line
@@ -238,9 +238,9 @@ struct xt_mtdtor_param {
 */
struct xt_target_param {
	const struct net_device *in, *out;
	unsigned int hooknum;
	const struct xt_target *target;
	const void *targinfo;
	unsigned int hooknum;
	u_int8_t family;
};

+0 −6
Original line number Diff line number Diff line
@@ -18,12 +18,6 @@ enum {
	XT_CONNMARK_RESTORE
};

struct xt_connmark_target_info {
	unsigned long mark;
	unsigned long mask;
	__u8 mode;
};

struct xt_connmark_tginfo1 {
	__u32 ctmark, ctmask, nfmask;
	__u8 mode;
+0 −17
Original line number Diff line number Diff line
@@ -3,23 +3,6 @@

#include <linux/types.h>

/* Version 0 */
struct xt_mark_target_info {
	unsigned long mark;
};

/* Version 1 */
enum {
	XT_MARK_SET=0,
	XT_MARK_AND,
	XT_MARK_OR,
};

struct xt_mark_target_info_v1 {
	unsigned long mark;
	__u8 mode;
};

struct xt_mark_tginfo2 {
	__u32 mark, mask;
};
+0 −5
Original line number Diff line number Diff line
@@ -12,11 +12,6 @@
 * (at your option) any later version.
 */

struct xt_connmark_info {
	unsigned long mark, mask;
	__u8 invert;
};

struct xt_connmark_mtinfo1 {
	__u32 mark, mask;
	__u8 invert;
Loading