Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-06-05 Thread Patrick McHardy
Patrick McHardy wrote: Dmitry Mishin wrote: It's better, but I see the issue with iterate with compat_check_entry() calls. If it fails, some of target/matches' check_* functions are called, some not. Please, review my version of this patch. You're right again, thanks. Patch applied

Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-06-03 Thread Patrick McHardy
Dmitry Mishin wrote: On Saturday 02 June 2007 16:54, Patrick McHardy wrote: Here it is, could you please test whether it fixes the crash by backing out the hashlimit compat patch and triggering the size error again? Thanks. Patrick, it looks like translate_compat_table() should be fixed

Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-06-03 Thread Patrick McHardy
Jan Engelhardt wrote: I am kind of impartial when it comes to testing patches, but when I look through and want to reply to them, doing them inline is preferred. Content-Disposition: inline; filename=x Works fine in any mailer I've tried. - To unsubscribe from this list: send the line

Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-05-29 Thread Patrick McHardy
Jan Engelhardt wrote: On May 10 2007 16:05, Jan Engelhardt wrote: On May 10 2007 16:02, Patrick McHardy wrote: A lot ... as far as the filter table and sshcheck is concerned, iptables -N sshcheck; iptables -A sshcheck -m recent --name sshcheck --seconds 60 --update -j DROP; iptables

Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-05-10 Thread Patrick McHardy
support Signed-off-by: Patrick McHardy [EMAIL PROTECTED] --- commit ba8991494e1522be10d764b174fc4e3744c99655 tree 85d5cf3861566aa38ecb2e091be987ecfeb17655 parent 1797736897a68f556aef76a6a0963c3e8b1b4950 author Patrick McHardy [EMAIL PROTECTED] Thu, 10 May 2007 14:57:40 +0200 committer Patrick McHardy

Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-05-10 Thread Patrick McHardy
Jan Engelhardt wrote: On May 10 2007 08:27, Jan Engelhardt wrote: As mentioned in the topic, I suspect it is due to 32-bit iptables not coping correctly with the 64-bit kernel (sometimes, patches to fix these are posted, so I thought it could be related). OS is Aurora Linux 2.98, with their

Re: iptables throws unknown error - suspecting 32/64 compat issue

2007-05-10 Thread Patrick McHardy
Jan Engelhardt wrote: On May 10 2007 15:20, Patrick McHardy wrote: And the following cmd oopsed it: # iptables -A INPUT -p tcp --dport 22 -m conntrack --ctstate NEW -j sshcheck; I believe this is a bug in the compat code, which *seems* to call (its a bit messy, I just had a quick

Re: unaligned access in ipt_ULOG

2007-04-02 Thread Patrick McHardy
shouldn't have these issues, I think the best way to fix this is to use put_unaligned in ipt_ULOG. How does this look? [NETFILTER]: ipt_ULOG: use put_unaligned Use put_unaligned to fix warnings about unaligned accesses. Signed-off-by: Patrick McHardy [EMAIL PROTECTED] --- commit