All of lore.kernel.org
 help / color / mirror / Atom feed
* fix compile error in IPv6 versions of nth and random modules
@ 2006-03-28 17:22 Daniel De Graaf
  2006-03-29  8:37 ` Patrick McHardy
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel De Graaf @ 2006-03-28 17:22 UTC (permalink / raw)
  To: netfilter-devel

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

When compiled for IPv6, the nth and random modules produce compile
errors because of a change in the ip6t_match structure. These patches
fix that error and a related warning about incompatible types. Since
the patches are nearly identical, I am posting them together; sorry if
this is a problem.

- Daniel De Graaf

[-- Attachment #2: diff --]
[-- Type: application/octet-stream, Size: 1773 bytes --]

Index: patchlets/nth/linux-2.6.10/net/ipv6/netfilter/ip6t_nth.c
===================================================================
--- patchlets/nth/linux-2.6.10/net/ipv6/netfilter/ip6t_nth.c	(revision 6560)
+++ patchlets/nth/linux-2.6.10/net/ipv6/netfilter/ip6t_nth.c	(working copy)
@@ -114,7 +114,7 @@
 
 static int
 ip6t_nth_checkentry(const char *tablename,
-		   const struct ip6t_ip6 *e,
+		   const void *ip,
 		   void *matchinfo,
 		   unsigned int matchsize,
 		   unsigned int hook_mask)
@@ -139,13 +139,12 @@
 	return 1;
 }
 
-static struct ip6t_match ip6t_nth_reg = { 
-	{NULL, NULL},
-	"nth",
-	ip6t_nth_match,
-	ip6t_nth_checkentry,
-	NULL,
-	THIS_MODULE };
+static struct ip6t_match ip6t_nth_reg = {
+	.name       = "nth",
+	.match      = &ip6t_nth_match,
+	.checkentry = &ip6t_nth_checkentry,
+	.me	    = THIS_MODULE,
+};
 
 static int __init init(void)
 {
Index: patchlets/random/linux-2.6/net/ipv6/netfilter/ip6t_random.c
===================================================================
--- patchlets/random/linux-2.6/net/ipv6/netfilter/ip6t_random.c	(revision 6560)
+++ patchlets/random/linux-2.6/net/ipv6/netfilter/ip6t_random.c	(working copy)
@@ -44,7 +44,7 @@
 
 static int
 ip6t_rand_checkentry(const char *tablename,
-		   const struct ip6t_ip6 *e,
+		   const void *ip,
 		   void *matchinfo,
 		   unsigned int matchsize,
 		   unsigned int hook_mask)
@@ -69,13 +69,12 @@
 	return 1;
 }
 
-static struct ip6t_match ip6t_rand_reg = { 
-	{NULL, NULL},
-	"random",
-	ip6t_rand_match,
-	ip6t_rand_checkentry,
-	NULL,
-	THIS_MODULE };
+static struct ip6t_match ip6t_rand_reg = {
+	.name       = "random",
+	.match      = &ip6t_rand_match,
+	.checkentry = &ip6t_rand_checkentry,
+	.me         = THIS_MODULE,
+};
 
 static int __init init(void)
 {


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-03-29  8:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-28 17:22 fix compile error in IPv6 versions of nth and random modules Daniel De Graaf
2006-03-29  8:37 ` Patrick McHardy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.