From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick McHardy Subject: Re: [PATCH 8/27] xt_connmark match, revision 1 Date: Fri, 04 Jan 2008 15:56:38 +0100 Message-ID: <477E4926.9070103@trash.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: Netfilter Developer Mailing List To: Jan Engelhardt Return-path: Received: from stinky.trash.net ([213.144.137.162]:48823 "EHLO stinky.trash.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752243AbYADO7n (ORCPT ); Fri, 4 Jan 2008 09:59:43 -0500 In-Reply-To: Sender: netfilter-devel-owner@vger.kernel.org List-ID: Jan Engelhardt wrote: > commit 375972a6ff3579f150bf916621b6fe752d29f25a > Author: Jan Engelhardt > Date: Wed Jan 2 17:52:04 2008 +0100 > > [NETFILTER]: xt_connmark match, revision 1 > > { > .name = "connmark", > + .revision = 0, > .family = AF_INET6, > - .checkentry = connmark_mt_check, > - .match = connmark_mt, > + .checkentry = connmark_mt_check_v0, > + .match = connmark_mt_v0, > .destroy = connmark_mt_destroy, > .matchsize = sizeof(struct xt_connmark_info), > #ifdef CONFIG_COMPAT This did not compile BTW because you forgot to update the compat functions for IPv6. Please always test compilation for all affected cases, if you don't have a machine which needs the compat code, simply defining CONFIG_COMPAT yourself should work.