Re: [PATCH] ipt_recent fixes

From: SZALONTAI, Zoltan
Date: Thu Jun 16 2005 - 06:03:20 EST


On Mon, May 09, 2005 at 03:50:09PM +0200, Juergen Kreileder wrote:
>
> This patch fixes the problem by using get_seconds() instead of
> jiffies. It also fixes some 64-bit issues.

I dont know this is correct, please review.

Zoli


time_temp is used to store and reassign time_info.time which is unsigned long.

diff -u net/ipv4/netfilter/ipt_recent.c.orig net/ipv4/netfilter/ipt_recent.c
--- net/ipv4/netfilter/ipt_recent.c.orig 2005-06-12 22:18:41.000000000 +0200
+++ net/ipv4/netfilter/ipt_recent.c 2005-06-16 10:08:25.000000000 +0200
@@ -361,9 +361,9 @@
int *hotdrop)
{
int pkt_count, hits_found, ans;
- unsigned long now;
+ unsigned long now, time_temp;
const struct ipt_recent_info *info = matchinfo;
- u_int32_t addr = 0, time_temp;
+ u_int32_t addr = 0;
u_int8_t ttl = skb->nh.iph->ttl;
int *hash_table;
int orig_hash_result, hash_result, temp, location = 0, time_loc, end_collision_chain = -1;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/