Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78509
b: refs/heads/master
c: 34f4c42
h: refs/heads/master
i:
  78507: ba3f4c2
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jan 28, 2008
1 parent f1b9372 commit 0e958a2
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3bc3fe5eed5e866c0871db6d745f3bf58af004ef
refs/heads/master: 34f4c4295eb2580ca67677dea14a2839aedc403f
5 changes: 5 additions & 0 deletions trunk/net/netfilter/xt_CONNMARK.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ static struct xt_target connmark_tg_reg[] __read_mostly = {
.destroy = connmark_tg_destroy,
.target = connmark_tg,
.targetsize = sizeof(struct xt_connmark_target_info),
#ifdef CONFIG_COMPAT
.compatsize = sizeof(struct compat_xt_connmark_target_info),
.compat_from_user = connmark_tg_compat_from_user,
.compat_to_user = connmark_tg_compat_to_user,
#endif
.me = THIS_MODULE
},
};
Expand Down
5 changes: 5 additions & 0 deletions trunk/net/netfilter/xt_connmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ static struct xt_match connmark_mt_reg[] __read_mostly = {
.match = connmark_mt,
.destroy = connmark_mt_destroy,
.matchsize = sizeof(struct xt_connmark_info),
#ifdef CONFIG_COMPAT
.compatsize = sizeof(struct compat_xt_connmark_info),
.compat_from_user = connmark_mt_compat_from_user,
.compat_to_user = connmark_mt_compat_to_user,
#endif
.me = THIS_MODULE
},
};
Expand Down
5 changes: 5 additions & 0 deletions trunk/net/netfilter/xt_limit.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,11 @@ static struct xt_match limit_mt_reg[] __read_mostly = {
.checkentry = limit_mt_check,
.match = limit_mt,
.matchsize = sizeof(struct xt_rateinfo),
#ifdef CONFIG_COMPAT
.compatsize = sizeof(struct compat_xt_rateinfo),
.compat_from_user = limit_mt_compat_from_user,
.compat_to_user = limit_mt_compat_to_user,
#endif
.me = THIS_MODULE,
},
};
Expand Down
5 changes: 5 additions & 0 deletions trunk/net/netfilter/xt_mark.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ static struct xt_match mark_mt_reg[] __read_mostly = {
.checkentry = mark_mt_check,
.match = mark_mt,
.matchsize = sizeof(struct xt_mark_info),
#ifdef CONFIG_COMPAT
.compatsize = sizeof(struct compat_xt_mark_info),
.compat_from_user = mark_mt_compat_from_user,
.compat_to_user = mark_mt_compat_to_user,
#endif
.me = THIS_MODULE,
},
};
Expand Down

0 comments on commit 0e958a2

Please sign in to comment.